Skip to content

Commit 1d1a8e3

Browse files
committed
Fix import order
1 parent 1602d75 commit 1d1a8e3

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

test/index.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
import test from 'ava';
2+
import {
3+
approxMatch,
4+
sampleFcpxml,
5+
sampleSrt,
6+
sampleVtt,
7+
} from './_helpers.test.js';
28
import {
39
fcpxmlToData,
410
fcpxmlToSrt,
@@ -10,12 +16,6 @@ import {
1016
vttToFcpxml,
1117
vttToSrt,
1218
} from 'subkit';
13-
import {
14-
approxMatch,
15-
sampleFcpxml,
16-
sampleSrt,
17-
sampleVtt,
18-
} from './_helpers.test.js';
1919

2020
const srtText = await sampleSrt();
2121
const vttText = await sampleVtt();

test/utils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava';
2-
import {detectFormat, msToTime, timeToMs} from 'subkit';
32
import {sampleFcpxml, sampleSrt, sampleVtt} from './_helpers.test.js';
3+
import {detectFormat, msToTime, timeToMs} from 'subkit';
44

55
const srtText = await sampleSrt();
66
const vttText = await sampleVtt();

0 commit comments

Comments
 (0)