Mark flaky Angular test (#9926)

This commit is contained in:
Mikael Mengistu 2019-05-02 10:28:11 -07:00 committed by GitHub
parent b502c845f6
commit 4cb86bc151
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,3 @@
@ECHO OFF
%~dp0..\..\startvs.cmd %~dp0ProjectTemplates.sln

View File

@ -3,6 +3,8 @@
using System.Threading.Tasks;
using Microsoft.AspNetCore.E2ETesting;
using Microsoft.AspNetCore.Testing;
using Microsoft.AspNetCore.Testing.xunit;
using Templates.Test.Helpers;
using Xunit;
using Xunit.Abstractions;
@ -15,6 +17,7 @@ namespace Templates.Test.SpaTemplateTest
: base(projectFactory, browserFixture, output) { }
[Fact]
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/2422", FlakyOn.All)]
public Task AngularTemplate_Works()
=> SpaTemplateImplAsync("angularnoauth", "angular", useLocalDb: false, usesAuth: false);