Skip to content

Commit e272952

Browse files
committed
chore: standardize test file names
1 parent e42ff51 commit e272952

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

test/index.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,15 +319,15 @@ run.methods.forEach((method) => {
319319
expect.assertions(1);
320320

321321
try {
322-
run(method, `${__dirname}/fixtures/shebang_enoent`);
322+
run(method, `${__dirname}/fixtures/shebang-enoent`);
323323
} catch (err) {
324324
expect(err.code).not.toBe('ENOENT');
325325
}
326326
});
327327
} else {
328328
it('should NOT emit `error` if shebang command does not exist', async () => {
329329
await new Promise((resolve, reject) => {
330-
const promise = run(method, `${__dirname}/fixtures/shebang_enoent`);
330+
const promise = run(method, `${__dirname}/fixtures/shebang-enoent`);
331331
const { cp } = promise;
332332

333333
promise.catch(() => {});

0 commit comments

Comments
 (0)