autoformat more files

This commit is contained in:
Zeke Sikelianos 2016-03-25 13:03:49 -07:00 committed by Kevin Sawicki
parent 06b556c34c
commit f35f362272
47 changed files with 4458 additions and 4459 deletions

View file

@ -1,47 +1,47 @@
const assert = require('assert');
const path = require('path');
const temp = require('temp');
const assert = require('assert')
const path = require('path')
const temp = require('temp')
describe('third-party module', function() {
var fixtures = path.join(__dirname, 'fixtures');
temp.track();
describe('third-party module', function () {
var fixtures = path.join(__dirname, 'fixtures')
temp.track()
if (process.platform !== 'win32' || process.execPath.toLowerCase().indexOf('\\out\\d\\') === -1) {
describe('runas', function() {
it('can be required in renderer', function() {
require('runas');
});
describe('runas', function () {
it('can be required in renderer', function () {
require('runas')
})
it('can be required in node binary', function(done) {
var runas = path.join(fixtures, 'module', 'runas.js');
var child = require('child_process').fork(runas);
child.on('message', function(msg) {
assert.equal(msg, 'ok');
done();
});
});
});
it('can be required in node binary', function (done) {
var runas = path.join(fixtures, 'module', 'runas.js')
var child = require('child_process').fork(runas)
child.on('message', function (msg) {
assert.equal(msg, 'ok')
done()
})
})
})
describe('ffi', function() {
it('does not crash', function() {
var ffi = require('ffi');
describe('ffi', function () {
it('does not crash', function () {
var ffi = require('ffi')
var libm = ffi.Library('libm', {
ceil: ['double', ['double']]
});
assert.equal(libm.ceil(1.5), 2);
});
});
})
assert.equal(libm.ceil(1.5), 2)
})
})
}
describe('q', function() {
var Q = require('q');
describe('Q.when', function() {
it('emits the fullfil callback', function(done) {
Q(true).then(function(val) {
assert.equal(val, true);
done();
});
});
});
});
});
describe('q', function () {
var Q = require('q')
describe('Q.when', function () {
it('emits the fullfil callback', function (done) {
Q(true).then(function (val) {
assert.equal(val, true)
done()
})
})
})
})
})