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 3760cbf commit cbe1c85Copy full SHA for cbe1c85
1 file changed
src/splitInteger.test.js
@@ -13,7 +13,7 @@ test(`should return a part equals to a value
13
when splitting into 1 part`, () => {
14
const result = splitInteger(20, 1);
15
16
- expect(result).toBe([20]);
+ expect(result).toEqual([20]);
17
});
18
19
test(`should sort parts ascending if they are not equal`, () => {
0 commit comments