Skip to content

Commit 9308bc2

Browse files
committed
add failing test
1 parent 0930d6d commit 9308bc2

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

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

+27
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,32 @@ run({
140140
export * from "./utils";
141141
`,
142142
},
143+
{
144+
code: ts`
145+
export * from "./lib/ticker-wat/Wat";
146+
export * from "./lib/sticky-wat/Wat";
147+
export * from "./lib/client-wat/Wat";
148+
export * from "./lib/ticker-wat/Wat";
149+
export * from "./lib/custom-wat/Wat";
150+
export * from "./lib/rules-wat/Wat";
151+
export * from "./lib/send-wat/Wat";
152+
export * from "./assets/timezone";
153+
export * from "./hooks/useWat";
154+
export * from "./lib/avatar/Avatar";
155+
`,
156+
157+
output: ts`
158+
export * from "./assets/timezone";
159+
export * from "./hooks/useWat";
160+
export * from "./lib/avatar/Avatar";
161+
export * from "./lib/client-wat/Wat";
162+
export * from "./lib/custom-wat/Wat";
163+
export * from "./lib/rules-wat/Wat";
164+
export * from "./lib/send-wat/Wat";
165+
export * from "./lib/sticky-wat/Wat";
166+
export * from "./lib/ticker-wat/Wat";
167+
export * from "./lib/ticker-wat/Wat";
168+
`,
169+
},
143170
],
144171
});

0 commit comments

Comments
 (0)