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 b726748 commit 4d29639Copy full SHA for 4d29639
test/without-babel.test.js
@@ -5,14 +5,14 @@ describe("createVar", () => {
5
const foo = createVar();
6
const bar = createVar();
7
const baz = createVar();
8
- expect(foo.name).toMatch("--fffffffe");
9
- expect(bar.name).toMatch("--ffffffff");
10
- expect(baz.name).toMatch("--100000000");
+ expect(foo.name).toMatch("--17179149");
+ expect(bar.name).toMatch("--1717914a");
+ expect(baz.name).toMatch("--1717914b");
11
});
12
13
it("allows to define a fallback variable", () => {
14
const foo = createVar({value: "red"});
15
- expect(foo.val).toMatch("var(--100000001, red)");
+ expect(foo.val).toMatch("var(--1717914c, red)");
16
17
18
0 commit comments