refactor(napi/transform): change test files to TypeScript (#7221)

This commit is contained in:
Boshen 2024-11-09 17:32:15 +08:00 committed by GitHub
parent 94865a9390
commit fc86703933
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
import { assert, describe, it } from 'vitest';
import oxc from './index.js';
import oxc from './index';
describe('isolated declaration', () => {
const code = `

View file

@ -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> {}';