@@ -44,13 +44,6 @@ namespace ts {
4444 assert . isEmpty ( OrganizeImports . coalesceImports ( [ ] ) ) ;
4545 } ) ;
4646
47- it ( "Sort specifiers" , ( ) => {
48- const sortedImports = parseImports ( `import { default as m, a as n, b, y, z as o } from "lib";` ) ;
49- const actualCoalescedImports = OrganizeImports . coalesceImports ( sortedImports ) ;
50- const expectedCoalescedImports = parseImports ( `import { a as n, b, default as m, y, z as o } from "lib";` ) ;
51- assertListEqual ( actualCoalescedImports , expectedCoalescedImports ) ;
52- } ) ;
53-
5447 it ( "Sort specifiers - case-insensitive" , ( ) => {
5548 const sortedImports = parseImports ( `import { default as M, a as n, B, y, Z as O } from "lib";` ) ;
5649 const actualCoalescedImports = OrganizeImports . coalesceImports ( sortedImports ) ;
@@ -186,13 +179,6 @@ namespace ts {
186179 assert . isEmpty ( OrganizeImports . coalesceExports ( [ ] ) ) ;
187180 } ) ;
188181
189- it ( "Sort specifiers" , ( ) => {
190- const sortedExports = parseExports ( `export { default as m, a as n, b, y, z as o } from "lib";` ) ;
191- const actualCoalescedExports = OrganizeImports . coalesceExports ( sortedExports ) ;
192- const expectedCoalescedExports = parseExports ( `export { a as n, b, default as m, y, z as o } from "lib";` ) ;
193- assertListEqual ( actualCoalescedExports , expectedCoalescedExports ) ;
194- } ) ;
195-
196182 it ( "Sort specifiers - case-insensitive" , ( ) => {
197183 const sortedExports = parseExports ( `export { default as M, a as n, B, y, Z as O } from "lib";` ) ;
198184 const actualCoalescedExports = OrganizeImports . coalesceExports ( sortedExports ) ;
0 commit comments