Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed May 22, 2024
1 parent 50312d9 commit c6cf9e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/babel-plugin-cjs-esm-interop/tests/plugin.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import { transformAsync, TransformOptions } from '@babel/core';
import cjsEsmInterop, { CjsEsmInteropOptions } from '../src';
import { transformAsync, type TransformOptions } from '@babel/core';
import cjsEsmInterop, { type CjsEsmInteropOptions } from '../src';

async function transform(
code: string,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, expect, it } from 'vitest';
import { transformAsync, TransformOptions } from '@babel/core';
import { transformAsync, type TransformOptions } from '@babel/core';
import conditionalInvariantPlugin from '../src';

async function transform(code: string, options?: TransformOptions): Promise<string> {
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-env-constants/tests/plugin.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, expect, it } from 'vitest';
import { transformAsync, TransformOptions } from '@babel/core';
import { transformAsync, type TransformOptions } from '@babel/core';
import envConstantsPlugin from '../src';

async function transform(code: string, options?: TransformOptions): Promise<string> {
Expand Down

0 comments on commit c6cf9e2

Please sign in to comment.