Skip to content

Commit e534446

Browse files
committed
chore: add test
Signed-off-by: nikolay <[email protected]>
1 parent 7fc9246 commit e534446

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/relay/tests/lib/services/lockService/LocalLockStrategy.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// SPDX-License-Identifier: Apache-2.0
22

33
import { expect } from 'chai';
4+
import { pino } from 'pino';
45
import sinon from 'sinon';
56

67
import { LocalLockStrategy } from '../../../../src/lib/services/lockService/LocalLockStrategy';
@@ -11,7 +12,7 @@ describe('LocalLockStrategy', function () {
1112
let lockStrategy: LocalLockStrategy;
1213

1314
beforeEach(() => {
14-
lockStrategy = new LocalLockStrategy();
15+
lockStrategy = new LocalLockStrategy(pino({ level: 'silent' }));
1516
});
1617

1718
afterEach(() => {

0 commit comments

Comments
 (0)