(s: string)
| 3319 | expect(splitSortJoin(div.className)).toEqual('4 5 6 7 abc'); |
| 3320 | |
| 3321 | function splitSortJoin(s: string) { |
| 3322 | return s.split(/\s+/).sort().join(' ').trim(); |
| 3323 | } |
| 3324 | }); |
| 3325 | |
| 3326 | describe('ExpressionChangedAfterItHasBeenCheckedError', () => { |