Skip to content

Commit

Permalink
refactor(napi/transform): change test files to TypeScript (#7221)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen authored Nov 9, 2024
1 parent 94865a9 commit fc86703
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { assert, describe, it } from 'vitest';

import oxc from './index.js';
import oxc from './index';

describe('isolated declaration', () => {
const code = `
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { assert, describe, it } from 'vitest';

import oxc from './index.js';
import oxc from './index';

describe('transform', () => {
const code = 'export class A<T> {}';
Expand Down

0 comments on commit fc86703

Please sign in to comment.