(files: TestSpecification[])
| 58 | |
| 59 | class Sorter { |
| 60 | sort(files: TestSpecification[]) { |
| 61 | return files.sort((a) => { |
| 62 | if (a.moduleId.includes('isolation-1')) { |
| 63 | return -1 |
| 64 | } |
| 65 | return 1 |
| 66 | }) |
| 67 | } |
| 68 | |
| 69 | shard(files: TestSpecification[]) { |
| 70 | return files |
no outgoing calls
no test coverage detected