Flip fixture dependency order
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/28860/head
parent
87a0acb53a
commit
7ba1d3e14c
|
|
@ -78,7 +78,7 @@ export const test = base.extend<Services>({
|
||||||
const container = new SynapseContainer(request);
|
const container = new SynapseContainer(request);
|
||||||
await use(container);
|
await use(container);
|
||||||
},
|
},
|
||||||
homeserver: async ({ network, _homeserver: homeserver, synapseConfigOptions }, use) => {
|
homeserver: async ({ mas, network, _homeserver: homeserver, synapseConfigOptions }, use) => {
|
||||||
const container = await homeserver
|
const container = await homeserver
|
||||||
.withNetwork(network)
|
.withNetwork(network)
|
||||||
.withNetworkAliases("homeserver")
|
.withNetworkAliases("homeserver")
|
||||||
|
|
@ -88,7 +88,7 @@ export const test = base.extend<Services>({
|
||||||
await use(container);
|
await use(container);
|
||||||
await container.stop();
|
await container.stop();
|
||||||
},
|
},
|
||||||
mas: async ({ network, homeserver }, use) => {
|
mas: async ({ network }, use) => {
|
||||||
const container = await new MatrixAuthenticationServiceContainer()
|
const container = await new MatrixAuthenticationServiceContainer()
|
||||||
.withNetwork(network)
|
.withNetwork(network)
|
||||||
.withNetworkAliases("mas")
|
.withNetworkAliases("mas")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue