Add delay after _GlobalImport is deleted to allow file system watcher to react
This commit is contained in:
parent
4ac3acca22
commit
1cb170ce02
|
|
@ -126,14 +126,15 @@ namespace Microsoft.AspNet.Mvc.FunctionalTests
|
||||||
// Act - 8
|
// Act - 8
|
||||||
// Remove new _GlobalImport file
|
// Remove new _GlobalImport file
|
||||||
File.Delete(newGlobalImport);
|
File.Delete(newGlobalImport);
|
||||||
|
await Task.Delay(_cacheDelayInterval);
|
||||||
responseContent = await client.GetStringAsync("http://localhost/Home/Index");
|
responseContent = await client.GetStringAsync("http://localhost/Home/Index");
|
||||||
|
|
||||||
// Assert - 8
|
// Assert - 8
|
||||||
// Everything should've recompiled.
|
// Everything should've recompiled.
|
||||||
var response8 = new ParsedResponse(responseContent);
|
var response8 = new ParsedResponse(responseContent);
|
||||||
Assert.NotEqual(response6.ViewStart, response7.ViewStart);
|
Assert.NotEqual(response7.ViewStart, response8.ViewStart);
|
||||||
Assert.NotEqual(response6.Index, response7.Index);
|
Assert.NotEqual(response7.Index, response8.Index);
|
||||||
Assert.NotEqual(response6.Layout, response7.Layout);
|
Assert.NotEqual(response7.Layout, response8.Layout);
|
||||||
|
|
||||||
// Act - 9
|
// Act - 9
|
||||||
// Refetch and verify we get cached types
|
// Refetch and verify we get cached types
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue