@@ -22,12 +22,12 @@ public class WasmAoTPublishIntegrationTest : WasmPublishIntegrationTestBase
22
22
{
23
23
public WasmAoTPublishIntegrationTest ( ITestOutputHelper log ) : base ( log ) { }
24
24
25
- [ Fact ( Skip = "https://github.com/dotnet/sdk/issues/31491" ) ]
25
+ [ Fact ]
26
26
public void AoT_Publish_InRelease_Works ( )
27
27
{
28
28
// Arrange
29
29
var testAppName = "BlazorWasmWithLibrary" ;
30
- var testInstance = CreateAspNetSdkTestAssetWithAot ( testAppName , new [ ] { "blazorwasm" } ) ;
30
+ var testInstance = CreateAspNetSdkTestAssetWithAot ( testAppName , new [ ] { "blazorwasm" } ) ;
31
31
File . WriteAllText ( Path . Combine ( testInstance . TestRoot , "blazorwasm" , "App.razor.css" ) , "h1 { font-size: 16px; }" ) ;
32
32
33
33
var publishCommand = new PublishCommand ( testInstance , "blazorwasm" ) ;
@@ -58,12 +58,12 @@ public void AoT_Publish_InRelease_Works()
58
58
new FileInfo ( Path . Combine ( blazorPublishDirectory , "css" , "app.css" ) ) . Should ( ) . Contain ( ".publish" ) ;
59
59
}
60
60
61
- [ Fact ( Skip = "https://github.com/dotnet/sdk/issues/31491" ) ]
61
+ [ Fact ]
62
62
public void AoT_Publish_WithExistingWebConfig_Works ( )
63
63
{
64
64
// Arrange
65
65
var testAppName = "BlazorWasmWithLibrary" ;
66
- var testInstance = CreateAspNetSdkTestAssetWithAot ( testAppName , new [ ] { "blazorwasm" } ) ;
66
+ var testInstance = CreateAspNetSdkTestAssetWithAot ( testAppName , new [ ] { "blazorwasm" } ) ;
67
67
68
68
var webConfigContents = "test webconfig contents" ;
69
69
File . WriteAllText ( Path . Combine ( testInstance . TestRoot , "blazorwasm" , "web.config" ) , webConfigContents ) ;
@@ -80,12 +80,12 @@ public void AoT_Publish_WithExistingWebConfig_Works()
80
80
webConfig . Should ( ) . Contain ( webConfigContents ) ;
81
81
}
82
82
83
- [ Fact ( Skip = "https://github.com/dotnet/sdk/issues/31491" ) ]
83
+ [ Fact ]
84
84
public void AoT_Publish_HostedAppWithScopedCss_VisualStudio ( )
85
85
{
86
86
// Simulates publishing the same way VS does by setting BuildProjectReferences=false.
87
87
var testAppName = "BlazorHosted" ;
88
- var testInstance = CreateAspNetSdkTestAssetWithAot ( testAppName , new [ ] { "blazorwasm" , "blazorhosted" } ) ;
88
+ var testInstance = CreateAspNetSdkTestAssetWithAot ( testAppName , new [ ] { "blazorwasm" , "blazorhosted" } ) ;
89
89
File . WriteAllText ( Path . Combine ( testInstance . TestRoot , "blazorwasm" , "App.razor.css" ) , "h1 { font-size: 16px; }" ) ;
90
90
91
91
// VS builds projects individually and then a publish with BuildDependencies=false, but building the main project is a close enough approximation for this test.
0 commit comments