Skip to content

Commit a17720e

Browse files
committed
Fix generateScopedName test
1 parent 11761a4 commit a17720e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -621,14 +621,14 @@ test("generates default scoped name", () => {
621621
strip(`
622622
.foo {}
623623
`),
624-
{ from: __dirname + "/file.css" }
624+
{ from: "/path/to/file.css" }
625625
).then(result => result.css)
626626
).resolves.toEqual(
627627
strip(`
628628
:export {
629-
foo: file__foo---3gjdp
629+
foo: file__foo---2jzU5
630630
}
631-
.file__foo---3gjdp {}
631+
.file__foo---2jzU5 {}
632632
`)
633633
);
634634
});

0 commit comments

Comments
 (0)