The test database is not required for activated extension tests, so we only need to download the test database for CLI integration tests.
13 lines
206 B
TypeScript
13 lines
206 B
TypeScript
import {
|
|
beforeAllAction,
|
|
beforeEachAction,
|
|
} from "../jest.activated-extension.setup";
|
|
|
|
beforeAll(async () => {
|
|
await beforeAllAction();
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
await beforeEachAction();
|
|
});
|