Flip fixture dependency order

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/28860/head
Michael Telatynski 2025-01-03 21:10:36 +00:00
parent 87a0acb53a
commit 7ba1d3e14c
No known key found for this signature in database
GPG Key ID: A2B008A5F49F5D0D
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ export const test = base.extend<Services>({
const container = new SynapseContainer(request);
await use(container);
},
homeserver: async ({ network, _homeserver: homeserver, synapseConfigOptions }, use) => {
homeserver: async ({ mas, network, _homeserver: homeserver, synapseConfigOptions }, use) => {
const container = await homeserver
.withNetwork(network)
.withNetworkAliases("homeserver")
@ -88,7 +88,7 @@ export const test = base.extend<Services>({
await use(container);
await container.stop();
},
mas: async ({ network, homeserver }, use) => {
mas: async ({ network }, use) => {
const container = await new MatrixAuthenticationServiceContainer()
.withNetwork(network)
.withNetworkAliases("mas")