Skip to content

Commit 4468218

Browse files
committed
fix test
1 parent 279f2bf commit 4468218

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cubejs-schema-compiler/test/integration/postgres/dataschema-compiler.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ describe('DataSchemaCompiler', () => {
186186
})
187187
`;
188188

189-
it('Should compile 200 schemas in less than 2500ms * 10', async () => {
189+
it('Should compile 200 schemas in less than 5000ms * 10', async () => {
190190
const repeats = 200;
191191

192192
const compilerWith = prepareJsCompiler(schema, { allowJsDuplicatePropsInSchema: false });
@@ -198,7 +198,7 @@ describe('DataSchemaCompiler', () => {
198198
const end = new Date().getTime();
199199
const time = end - start;
200200

201-
expect(time).toBeLessThan(2500 * 10);
201+
expect(time).toBeLessThan(5000 * 10);
202202
});
203203
});
204204
});

0 commit comments

Comments
 (0)