@@ -37,68 +37,96 @@ run({
37
37
export * from "./b";
38
38
export * from "./a";
39
39
` ,
40
+ output : js `
41
+ export * from "./a";
42
+ export * from "./b";
43
+ ` ,
40
44
errors : [
41
45
{
42
46
message :
43
47
"\"export * from './a'\" should occur before \"export * from './b'\"." ,
44
48
} ,
45
49
] ,
50
+ } ,
51
+ {
52
+ code : js `
53
+ export * from "./b";
54
+ export * from "./a";
55
+ ` ,
46
56
output : js `
47
57
export * from "./a";
48
58
export * from "./b";
49
59
` ,
60
+ errors : [
61
+ {
62
+ messageId : "unorderedSortExportAll" ,
63
+ data : {
64
+ beforeName : "./a" ,
65
+ afterName : "./b" ,
66
+ } ,
67
+ } ,
68
+ ] ,
50
69
} ,
51
70
{
52
71
code : js `
53
72
export * from "./b";
54
73
export * from "./a";
55
74
export * from "./c";
56
75
` ,
57
- errors : [
58
- {
59
- message :
60
- "\"export * from './a'\" should occur before \"export * from './b'\"." ,
61
- } ,
62
- ] ,
63
76
output : js `
64
77
export * from "./a";
65
78
export * from "./b";
66
79
export * from "./c";
67
80
` ,
81
+ errors : [
82
+ {
83
+ messageId : "unorderedSortExportAll" ,
84
+ data : {
85
+ beforeName : "./a" ,
86
+ afterName : "./b" ,
87
+ } ,
88
+ } ,
89
+ ] ,
68
90
} ,
69
91
{
70
92
code : js `
71
93
export * from "./a";
72
94
export * from "./c";
73
95
export * from "./b";
74
96
` ,
75
- errors : [
76
- {
77
- message :
78
- "\"export * from './b'\" should occur before \"export * from './c'\"." ,
79
- } ,
80
- ] ,
81
97
output : js `
82
98
export * from "./a";
83
99
export * from "./b";
84
100
export * from "./c";
85
101
` ,
102
+ errors : [
103
+ {
104
+ messageId : "unorderedSortExportAll" ,
105
+ data : {
106
+ beforeName : "./b" ,
107
+ afterName : "./c" ,
108
+ } ,
109
+ } ,
110
+ ] ,
86
111
} ,
87
112
{
88
113
code : js `
89
114
export * from "./ca/cb";
90
115
export * from "./a";
91
116
` ,
92
- errors : [
93
- {
94
- message :
95
- "\"export * from './a'\" should occur before \"export * from './ca/cb'\"." ,
96
- } ,
97
- ] ,
98
117
output : js `
99
118
export * from "./a";
100
119
export * from "./ca/cb";
101
120
` ,
121
+ errors : [
122
+ {
123
+ messageId : "unorderedSortExportAll" ,
124
+ data : {
125
+ beforeName : "./a" ,
126
+ afterName : "./ca/cb" ,
127
+ } ,
128
+ } ,
129
+ ] ,
102
130
} ,
103
131
] ,
104
132
} ) ;
@@ -128,44 +156,106 @@ run({
128
156
export type * from "./types";
129
157
export * from "./constants";
130
158
` ,
159
+ output : ts `
160
+ export * from "./constants";
161
+ export type * from "./types";
162
+ export * from "./utils";
163
+ ` ,
131
164
errors : [
132
165
{
133
- message :
134
- "\"export * from './constants'\" should occur before \"export * from './utils'\"." ,
166
+ messageId : "unorderedSortExportAll" ,
167
+ data : {
168
+ beforeName : "./constants" ,
169
+ afterName : "./utils" ,
170
+ } ,
135
171
} ,
136
172
] ,
173
+ } ,
174
+ {
175
+ name : "should handle duplicate names" ,
176
+ code : ts `
177
+ export * from "./b";
178
+ export * from "./a";
179
+ export * from "./b";
180
+ ` ,
181
+
137
182
output : ts `
138
- export * from "./constants ";
139
- export type * from "./types ";
140
- export * from "./utils ";
183
+ export * from "./a ";
184
+ export * from "./b ";
185
+ export * from "./b ";
141
186
` ,
187
+ errors : [
188
+ {
189
+ messageId : "unorderedSortExportAll" ,
190
+ data : {
191
+ beforeName : "./a" ,
192
+ afterName : "./b" ,
193
+ } ,
194
+ } ,
195
+ ] ,
196
+ } ,
197
+ {
198
+ name : "should handle duplicate names (issue)" ,
199
+ code : ts `
200
+ export * from "./lib/ticker-wat/Wat";
201
+ export * from "./lib/sticky-wat/Wat";
202
+ export * from "./lib/client-wat/Wat";
203
+ export * from "./lib/custom-wat/Wat";
204
+ export * from "./lib/rules-wat/Wat";
205
+ export * from "./lib/send-wat/Wat";
206
+ export * from "./assets/timezone";
207
+ export * from "./hooks/useWat";
208
+ export * from "./lib/avatar/Avatar";
209
+ ` ,
210
+
211
+ output : ts `
212
+ export * from "./assets/timezone";
213
+ export * from "./hooks/useWat";
214
+ export * from "./lib/avatar/Avatar";
215
+ export * from "./lib/client-wat/Wat";
216
+ export * from "./lib/custom-wat/Wat";
217
+ export * from "./lib/rules-wat/Wat";
218
+ export * from "./lib/send-wat/Wat";
219
+ export * from "./lib/sticky-wat/Wat";
220
+ export * from "./lib/ticker-wat/Wat";
221
+ ` ,
222
+ } ,
223
+ {
224
+ name : "should handle multiple fixes" ,
225
+ code : ts `
226
+ export * from "./c";
227
+ export * from "./b";
228
+ export * from "./a";
229
+ ` ,
230
+
231
+ output : ts `
232
+ export * from "./a";
233
+ export * from "./b";
234
+ export * from "./c";
235
+ ` ,
236
+ errors : [
237
+ {
238
+ messageId : "unorderedSortExportAll" ,
239
+ data : {
240
+ beforeName : "./a" ,
241
+ afterName : "./c" ,
242
+ } ,
243
+ } ,
244
+ ] ,
142
245
} ,
143
- // TODO: Fix make this test pass
144
246
// {
247
+ // name: "should handle comment",
145
248
// code: ts`
146
- // export * from "./lib/ticker-wat/Wat";
147
- // export * from "./lib/sticky-wat/Wat";
148
- // export * from "./lib/client-wat/Wat";
149
- // export * from "./lib/ticker-wat/Wat";
150
- // export * from "./lib/custom-wat/Wat";
151
- // export * from "./lib/rules-wat/Wat";
152
- // export * from "./lib/send-wat/Wat";
153
- // export * from "./assets/timezone";
154
- // export * from "./hooks/useWat";
155
- // export * from "./lib/avatar/Avatar";
249
+ // // This is C
250
+ // export * from "./c";
251
+ // export * from "./b";
252
+ // export * from "./a";
156
253
// `,
157
- //
158
254
// output: ts`
159
- // export * from "./assets/timezone";
160
- // export * from "./hooks/useWat";
161
- // export * from "./lib/avatar/Avatar";
162
- // export * from "./lib/client-wat/Wat";
163
- // export * from "./lib/custom-wat/Wat";
164
- // export * from "./lib/rules-wat/Wat";
165
- // export * from "./lib/send-wat/Wat";
166
- // export * from "./lib/sticky-wat/Wat";
167
- // export * from "./lib/ticker-wat/Wat";
168
- // export * from "./lib/ticker-wat/Wat";
255
+ // export * from "./a";
256
+ // export * from "./b";
257
+ // // This is C
258
+ // export * from "./c";
169
259
// `,
170
260
// },
171
261
] ,
0 commit comments