Fix all test/ files with ESLint rules with 0 errors and 0 warnings.

This commit is contained in:
Gunther Brunner
2016-01-19 20:56:19 +09:00
parent 434f63b3a9
commit b2217d01dd
4 changed files with 9 additions and 13 deletions

View File

@@ -7,12 +7,10 @@ var expect = chai.expect
var keyutil = require('../../lib/util/keyutil')
describe('keyutil', function() {
describe('parseKeyCharacterMap', function() {
it('should be able to parse Virtual.kcm', function(done) {
var expected = require('../fixt/Virtual.kcm.json')
, source = path.join(__dirname, '..', 'fixt', 'Virtual.kcm')
var source = path.join(__dirname, '..', 'fixt', 'Virtual.kcm')
keyutil.parseKeyCharacterMap(fs.createReadStream(source))
.then(function(keymap) {
@@ -21,7 +19,5 @@ describe('keyutil', function() {
})
.catch(done)
})
})
})