Skip to content

Commit a9e841b

Browse files
author
Vincent Molinié
committed
test: fix number of assertions
1 parent f3ecb26 commit a9e841b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/utils/operators.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const Operators = require('../../src/utils/operators');
44
describe('utils > operators', () => {
55
describe('with an old sequelize', () => {
66
it('should return a valid operator', () => {
7-
expect.assertions(2);
7+
expect.assertions(13);
88

99
const Op = new Operators();
1010
expect(Op.AND).toStrictEqual('$and');
@@ -25,7 +25,7 @@ describe('utils > operators', () => {
2525

2626
describe('with an up to date sequelize', () => {
2727
it('should return a valid operator', () => {
28-
expect.assertions(2);
28+
expect.assertions(13);
2929

3030
const Op = new Operators({ sequelize });
3131
expect(Op.AND).toStrictEqual(sequelize.Op.and);

0 commit comments

Comments
 (0)