Move service state into InstanceState, flatten service facades (#18483)
This commit is contained in:
parent
40aeaa120d
commit
38e0dc9ccd
84 changed files with 4546 additions and 3752 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { test, expect } from "bun:test"
|
||||
import { afterEach, test, expect } from "bun:test"
|
||||
import { $ } from "bun"
|
||||
import fs from "fs/promises"
|
||||
import path from "path"
|
||||
|
|
@ -12,6 +12,10 @@ import { tmpdir } from "../fixture/fixture"
|
|||
// This helper does the same for expected values so assertions match cross-platform.
|
||||
const fwd = (...parts: string[]) => path.join(...parts).replaceAll("\\", "/")
|
||||
|
||||
afterEach(async () => {
|
||||
await Instance.disposeAll()
|
||||
})
|
||||
|
||||
async function bootstrap() {
|
||||
return tmpdir({
|
||||
git: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue