Skip to content

Commit 4d29639

Browse files
committed
test: update generated variables
1 parent b726748 commit 4d29639

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/without-babel.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ describe("createVar", () => {
55
const foo = createVar();
66
const bar = createVar();
77
const baz = createVar();
8-
expect(foo.name).toMatch("--fffffffe");
9-
expect(bar.name).toMatch("--ffffffff");
10-
expect(baz.name).toMatch("--100000000");
8+
expect(foo.name).toMatch("--17179149");
9+
expect(bar.name).toMatch("--1717914a");
10+
expect(baz.name).toMatch("--1717914b");
1111
});
1212

1313
it("allows to define a fallback variable", () => {
1414
const foo = createVar({value: "red"});
15-
expect(foo.val).toMatch("var(--100000001, red)");
15+
expect(foo.val).toMatch("var(--1717914c, red)");
1616
});
1717

1818
});

0 commit comments

Comments
 (0)