()
| 4 | import { Runtime } from '../runtime/runtime' |
| 5 | |
| 6 | const createRuntime = () => { |
| 7 | const r = new Runtime() |
| 8 | r.addCoreExtensions() |
| 9 | r.addPlugin(path.join(__dirname, '..', 'fixtures', 'good-plugins', 'generate')) |
| 10 | r.addPlugin(path.join(__dirname, '..', 'fixtures', 'good-plugins', 'generate-build')) |
| 11 | return r |
| 12 | } |
| 13 | |
| 14 | test('generates a simple file', async () => { |
| 15 | const toolbox = await createRuntime().run('simple') |
no test coverage detected
searching dependent graphs…