Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit 11b3455

Browse files
committed
Fix file path references
1 parent 5e8d0e4 commit 11b3455

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/00-sanity.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function run(input, config = {}) {
1010
test('it works', () => {
1111
let config = {
1212
darkMode: 'class',
13-
purge: [path.resolve(__dirname, './01-sanity.test.html')],
13+
purge: [path.resolve(__dirname, './00-sanity.test.html')],
1414
corePlugins: { preflight: false },
1515
theme: {
1616
extend: {
@@ -152,7 +152,7 @@ test('it works', () => {
152152
`
153153

154154
return run(css, config).then((result) => {
155-
let expectedPath = path.resolve(__dirname, './01-sanity.test.css')
155+
let expectedPath = path.resolve(__dirname, './00-sanity.test.css')
156156
let expected = fs.readFileSync(expectedPath, 'utf8')
157157

158158
expect(result.css).toMatchCss(expected)

0 commit comments

Comments
 (0)