Skip to content

Commit a73813c

Browse files
authored
Fix ci erorrs (#2655)
[no important files changed] * Update proof.ci.js Remove implicit coercion (attempt 1) * Update zipper.spec.js the description of a `test` cannot start with the word 'test'
1 parent 383306a commit a73813c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exercises/practice/sublist/.meta/proof.ci.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class List {
1313
other.items.length === 0 ||
1414
`,${this.items.join(',')},`.includes(`,${other.items.join(',')},`);
1515
return ['UNEQUAL', 'SUPERLIST', 'SUBLIST', 'EQUAL'][
16-
+superlist + (+sublist << 1)
16+
Number(superlist) + (Number(sublist) << 1)
1717
];
1818
}
1919
}

exercises/practice/zipper/zipper.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ describe('Zipper', () => {
5050
expect(zipper.left().up().right().up().left().right().value()).toEqual(3);
5151
});
5252

53-
xtest('test ability to descend multiple levels and return', () => {
53+
xtest('ability to descend multiple levels and return', () => {
5454
expect(zipper.left().right().up().up().value()).toEqual(1);
5555
});
5656

0 commit comments

Comments
 (0)