Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit cfe93f1

Browse files
author
Walker
committed
Fix angry eslint
1 parent 99ee06e commit cfe93f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/writer.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
/* global test, expect, beforeEach */
3+
/* global test, expect, beforeEach, jest */
44

55
const path = require('path');
66
const { hasher } = require('asset-pipe-common');
@@ -221,10 +221,10 @@ test('writer emits error', done => {
221221
throw new Error();
222222
},
223223
}));
224-
const Writer = require('..');
224+
const CssWriter = require('..');
225225
const filePath = path.join(__dirname, 'test-assets/my-module-1/main.css');
226226

227-
const writer = new Writer(filePath);
227+
const writer = new CssWriter(filePath);
228228

229229
writer.on('error', error => {
230230
expect(error).toBeInstanceOf(Error);

0 commit comments

Comments
 (0)