Skip to content

Commit 9e69437

Browse files
committed
fix types
1 parent f578881 commit 9e69437

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/cubejs-backend-shared/test/promises.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ describe('asyncDebounce', () => {
485485

486486
describe('asyncMemoizeBackground', () => {
487487
beforeEach(() => {
488-
jest.useFakeTimers('legacy');
488+
jest.useFakeTimers();
489489
});
490490

491491
afterEach(() => {

packages/cubejs-testing-drivers/src/helpers/runEnvironment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export async function runEnvironment(
108108
default: 'docker',
109109
}
110110
})
111-
.argv;
111+
.parseSync();
112112
const isLocal = mode === 'local';
113113
const [composePath, composeFile] = getComposePath(type, fixture, isLocal);
114114
const compose = new DockerComposeEnvironment(

0 commit comments

Comments
 (0)