style update to standard v7

This commit is contained in:
typicode
2016-07-03 18:50:11 +02:00
parent bf45e62b7a
commit 988ddded82
15 changed files with 12 additions and 78 deletions

View File

@ -4,9 +4,7 @@ var utils = require('../../src/server/utils')
/* global describe, it */
describe('utils', function () {
describe('toNative', function () {
it('should convert string to native type', function () {
// should convert
assert.strictEqual(utils.toNative('1'), 1)
@ -22,6 +20,5 @@ describe('utils', function () {
assert.strictEqual(utils.toNative(1), 1)
assert.strictEqual(utils.toNative(true), true)
})
})
})