electron/spec/fixtures/pages/native-module.html
Milan Burda d78f37ec8f
refactor: use node scheme imports in spec (#38487)
Co-authored-by: Milan Burda <miburda@microsoft.com>
2023-06-15 10:42:27 -04:00

9 lines
229 B
HTML

<html>
<body>
<script type="text/javascript" charset="utf-8">
var path = require('node:path');
console.log(typeof require(path.join(__dirname, '..', '..', 'node_modules', '@electron-ci', 'echo')));
</script>
</body>
</html>