()
| 65 | |
| 66 | describe("prompts the user if trying to run with errors", () => { |
| 67 | function getTempProjectFile() { |
| 68 | const fileName = `temp-${getRandomInt(0x1000, 0x10000).toString(16)}.dart`; |
| 69 | return vs.Uri.file(path.join(fsPath(helloWorldFolder), "bin", fileName)); |
| 70 | } |
| 71 | function getTempTestFile() { |
| 72 | const fileName = `temp-${getRandomInt(0x1000, 0x10000).toString(16)}.dart`; |
| 73 | return vs.Uri.file(path.join(fsPath(helloWorldFolder), "test", fileName)); |
no test coverage detected