Skip to content

Commit

Permalink
Update test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus authored Jul 22, 2024
1 parent 569fc4a commit bac765a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions examples/typescript-loader/test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import test from 'ava';
import {multiply} from './index.js';

import { multiply } from './index.js';

test('multiply', (t) => {
test('multiply', t => {
t.is(multiply(1, 0), 0);
t.is(multiply(2, 3), 6);
});

0 comments on commit bac765a

Please sign in to comment.