electron/spec-main/fixtures/module/echo.js
Jamie Magee e1ed96b574
test: scope internal test fixtures under @electron-ci (#33822)
* test: scope internal test fixtures under `@electron`

* Missed references

* Move packages from @electron to @electron-ci scope

* Fix tests
2022-05-02 13:09:23 -04:00

6 lines
152 B
JavaScript

process.on('uncaughtException', function (err) {
process.send(err.message);
});
const echo = require('@electron-ci/echo');
process.send(echo('ok'));