mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
20 lines
512 B
JavaScript
20 lines
512 B
JavaScript
import { remote } from 'electron';
|
|
import {TerminalReporter} from 'jasmine-tagged';
|
|
|
|
export default class N1TerminalReporter extends TerminalReporter {
|
|
constructor(opts = {}) {
|
|
const options = Object.assign(opts, {
|
|
color: true,
|
|
print(str) {
|
|
return remote.process.stdout.write(str);
|
|
},
|
|
onComplete(runner) {
|
|
if (runner.results().failedCount > 0) {
|
|
return NylasEnv.exit(1);
|
|
}
|
|
return NylasEnv.exit(0);
|
|
},
|
|
});
|
|
super(options)
|
|
}
|
|
}
|