Skip to content

Commit 633f39f

Browse files
committed
Avoid lerna warning about flaky tests
1 parent 3a12e7c commit 633f39f

File tree

2 files changed

+2
-2
lines changed
  • packages
    • node-firebird-driver/src/test
    • node-firebird-native-api/src/test

2 files changed

+2
-2
lines changed

packages/node-firebird-driver/src/test/tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import * as fs from 'fs-extra-promise';
1313
import * as tmp from 'temp-fs';
1414

1515
// eslint-disable-next-line @typescript-eslint/no-require-imports
16-
require('dotenv').config({ path: '../../.env' });
16+
require('dotenv').config({ path: '../../.env', quiet: true });
1717

1818
export function runCommonTests(client: Client) {
1919
function dateToString(d: Date) {

packages/node-firebird-native-api/src/test/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { disposeMaster, getDefaultLibraryFilename, getMaster, Master, Provider,
55
import { XpbBuilder } from '../lib';
66

77
// eslint-disable-next-line @typescript-eslint/no-require-imports
8-
require('dotenv').config({ path: '../../.env' });
8+
require('dotenv').config({ path: '../../.env', quiet: true });
99

1010
describe('node-firebird-native-api', () => {
1111
const testConfig = {

0 commit comments

Comments
 (0)