(self, args)
| 5587 | 'minimal': (['-sMINIMAL_RUNTIME', '-sMINIMAL_RUNTIME_STREAMING_WASM_INSTANTIATION'],), |
| 5588 | }) |
| 5589 | def test_vite(self, args): |
| 5590 | copytree(test_file('vite'), '.') |
| 5591 | self.compile_btest('hello_world.c', ['-sEXIT_RUNTIME', '-sENVIRONMENT=web', '-o', 'hello.mjs'] + args) |
| 5592 | self.run_process(shared.get_npm_cmd('vite') + ['build']) |
| 5593 | self.run_browser('dist/index.html', '/report_result?exit:0') |
| 5594 | |
| 5595 | @also_with_pthreads |
| 5596 | @requires_dev_dependency('rollup') |
nothing calls this directly
no test coverage detected