🔧 Spec: Fix style issues

This commit is contained in:
Felix Rieseberg 2017-11-23 14:22:43 -08:00
parent 0278e380de
commit 9f0df695ca
13 changed files with 49 additions and 5 deletions

View file

@ -298,6 +298,7 @@ describe('node feature', () => {
describe('process.stdout', () => {
it('does not throw an exception when accessed', () => {
assert.doesNotThrow(() => {
// eslint-disable-next-line
process.stdout
})
})
@ -332,7 +333,7 @@ describe('node feature', () => {
describe('process.stdin', () => {
it('does not throw an exception when accessed', () => {
assert.doesNotThrow(() => {
process.stdin
process.stdin // eslint-disable-line
})
})