Skip to content
Snippets Groups Projects
Commit e2b26351 authored by Atte Keinänen's avatar Atte Keinänen
Browse files

Try to fix CircleCI H2 problem by starting backends sequentially

parent ffaac356
Branches
Tags
No related merge requests found
......@@ -42,10 +42,8 @@ const login = async (apiHost) => {
}
const init = async() => {
await Promise.all([
BackendResource.start(serverWithTestDbFixture),
BackendResource.start(serverWithPlainDb)
])
await BackendResource.start(serverWithTestDbFixture)
await BackendResource.start(serverWithPlainDb)
const sharedLoginSession = await login(testFixtureBackendHost)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment