Skip to content

Commit 571dc93

Browse files
committed
better test
1 parent 593d72e commit 571dc93

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/rules/sort-export-all.test.ts

+16
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,22 @@ run({
3232
},
3333
],
3434
invalid: [
35+
{
36+
code: js`
37+
export * from "./b";
38+
export * from "./a";
39+
`,
40+
output: js`
41+
export * from "./a";
42+
export * from "./b";
43+
`,
44+
errors: [
45+
{
46+
message:
47+
"\"export * from './a'\" should occur before \"export * from './b'\".",
48+
},
49+
],
50+
},
3551
{
3652
code: js`
3753
export * from "./b";

0 commit comments

Comments
 (0)