File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/Server/Coderr.Server.Web.Tests Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace codeRR.Server.Web.Tests.Tests
99 [ Trait ( "Category" , "Integration" ) ]
1010 public class IncidentsPageTests : LoggedInTest
1111 {
12- [ Fact ]
12+ [ Fact ( Skip = "Needs more work" ) ]
1313 public void Should_be_able_to_report_error_with_client_lib_and_error_shows_up_in_incidents ( )
1414 {
1515 UITest ( ( ) =>
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ static WebTest()
4141 // Disables database migration in codeRR.Server.Web project, should be up-to-date already
4242 // SchemaUpdateModule does not handle coderr_ConnectionString environment variable
4343 // This should only be run on build server due to changes in web.config
44- if ( Environment . GetEnvironmentVariable ( "BUILD_SERVER " ) != null )
44+ if ( Environment . GetEnvironmentVariable ( "TF_BUILD " ) != null )
4545 {
4646 DisableDatabaseMigrations ( ) ;
4747 }
@@ -62,7 +62,7 @@ static WebTest()
6262 _iisExpress . Start ( "codeRR.Server.Web" ) ;
6363
6464 // Warmup request only on build server
65- if ( Environment . GetEnvironmentVariable ( "BUILD_SERVER " ) != null )
65+ if ( Environment . GetEnvironmentVariable ( "TF_BUILD " ) != null )
6666 {
6767 var webClient = new WebClient ( ) ;
6868 webClient . DownloadString ( _iisExpress . BaseUrl ) ;
You can’t perform that action at this time.
0 commit comments