refactor(directory): ♻ try halving db init wait time in migrations test

This commit is contained in:
Collin M. Barrett 2020-09-07 17:04:43 -05:00
parent 66158c1e9d
commit a80618ff44

View file

@ -14,7 +14,7 @@ public async Task Migrate_DoesNotThrowException()
var exception = await Record.ExceptionAsync(async () =>
{
// allow time for db to init
Thread.Sleep(10000);
Thread.Sleep(5000);
const string connString = "Server=directory-db;Database=filterlists;Uid=filterlists;Pwd=filterlists;";
var options = new DbContextOptionsBuilder<QueryDbContext>()