(files, resetTestNamePattern)
| 84 | return fs.writeFile(id, content, 'utf-8') |
| 85 | }, |
| 86 | async rerun(files, resetTestNamePattern) { |
| 87 | // silently ignore exec attempts if not allowed |
| 88 | if (!ctx.config.api.allowExec) { |
| 89 | return |
| 90 | } |
| 91 | await ctx.rerunFiles(files, undefined, true, resetTestNamePattern) |
| 92 | }, |
| 93 | async rerunTask(id) { |
| 94 | // silently ignore exec attempts if not allowed |
| 95 | if (!ctx.config.api.allowExec) { |
nothing calls this directly
no test coverage detected