Skip to content

Commit

Permalink
remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
xtuc committed Mar 29, 2024
1 parent c50a158 commit 83d13d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect } from 'chai';
import { join } from 'path';
import { readdirSync, writeFileSync, statSync, readFileSync, existsSync } from 'fs';
import { readdirSync, writeFileSync, statSync, readFileSync } from 'fs';

import { importAttributes, importAssertions, importAttributesOrAssertions } from "../src/index.js";
import testPlugin from './test-plugin.js';
Expand All @@ -15,7 +15,7 @@ const updateMode = process.env.UPDATE_TESTS === '1';

describe('acorn-import-attributes', () => {
testFolders.forEach((folderName) => {
it(`should parse ${folderName}`, async () => {
it(`should parse ${folderName}`, () => {
const actual = readFileSync(join(FIXTURE_PATH, folderName, 'actual.js'), 'utf8');
const expectedFile = join(FIXTURE_PATH, folderName, 'expected.json');
const plugin = folderName.startsWith("assertions")
Expand Down

0 comments on commit 83d13d6

Please sign in to comment.