Skip to content

Commit 818a8a9

Browse files
committed
test case comment out
1 parent dd6ccae commit 818a8a9

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

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

+15
Original file line numberDiff line numberDiff line change
@@ -194,5 +194,20 @@ run({
194194
export * from "./c";
195195
`,
196196
},
197+
// {
198+
// name: "should handle comment",
199+
// code: ts`
200+
// // This is C
201+
// export * from "./c";
202+
// export * from "./b";
203+
// export * from "./a";
204+
// `,
205+
// output: ts`
206+
// export * from "./a";
207+
// export * from "./b";
208+
// // This is C
209+
// export * from "./c";
210+
// `,
211+
// },
197212
],
198213
});

0 commit comments

Comments
 (0)