import { TestWorkflowEnvironment } from "@temporalio/testing";
beforeEach(async () => {
testEnv = await TestWorkflowEnvironment.createTimeSkipping();
});
afterEach(async () => {
restore();
await testEnv?.teardown();
});
it.only('say hi', () => {
console.log('hello')
})
import { TestWorkflowEnvironment } from "@temporalio/testing";
beforeEach(async () => {
testEnv = await TestWorkflowEnvironment.createTimeSkipping();
});
afterEach(async () => {
restore();
await testEnv?.teardown();
});
it.only('say hi', () => {
console.log('hello')
})