We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3ecb26 commit a9e841bCopy full SHA for a9e841b
test/utils/operators.test.js
@@ -4,7 +4,7 @@ const Operators = require('../../src/utils/operators');
4
describe('utils > operators', () => {
5
describe('with an old sequelize', () => {
6
it('should return a valid operator', () => {
7
- expect.assertions(2);
+ expect.assertions(13);
8
9
const Op = new Operators();
10
expect(Op.AND).toStrictEqual('$and');
@@ -25,7 +25,7 @@ describe('utils > operators', () => {
25
26
describe('with an up to date sequelize', () => {
27
28
29
30
const Op = new Operators({ sequelize });
31
expect(Op.AND).toStrictEqual(sequelize.Op.and);
0 commit comments