Skip to content

Commit 9be0aaa

Browse files
The transformer didnt fix this
1 parent cd41753 commit 9be0aaa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/* eslint-disable no-magic-numbers */
22
import fromIteratorToArray from "./index";
33

4-
test(() => {
4+
test("works", () => {
55
expect(fromIteratorToArray(new Set([1, 2, 3]).entries())).toEqual([[1, 1], [2, 2], [3, 3]]);
66
});
77

8-
test(() => {
8+
test("works", () => {
99
expect(
1010
fromIteratorToArray(new Map([["aaa", "a"], ["bbb", "b"], ["ccc", "c"]]).entries())
1111
).toEqual([["aaa", "a"], ["bbb", "b"], ["ccc", "c"]]);

0 commit comments

Comments
 (0)