electron/spec-main/fixtures/module/echo-renamed.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

7 lines
113 B
JavaScript

let echo;
try {
echo = require('@electron-ci/echo');
} catch (e) {
process.exit(1);
}
process.exit(echo(0));