Merge pull request #993 from gzzhanghao/tests

[web] Fix eslint warnings about tests
This commit is contained in:
Maximilian Hils 2016-03-02 17:50:59 +01:00
commit b48d1fa5b8
2 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,7 @@
"test": "jest ./src/js" "test": "jest ./src/js"
}, },
"jest": { "jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testPathDirs": [ "testPathDirs": [
"./src/js" "./src/js"
], ],
@ -25,6 +26,7 @@
}, },
"devDependencies": { "devDependencies": {
"babel-core": "^6.5.2", "babel-core": "^6.5.2",
"babel-jest": "^6.0.1",
"babel-preset-es2015": "^6.5.0", "babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0", "babel-preset-react": "^6.5.0",
"babelify": "^7.2.0", "babelify": "^7.2.0",
@ -41,6 +43,7 @@
"gulp-rename": "^1.2.2", "gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0", "gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7", "gulp-util": "^3.0.7",
"jest": "^0.1.40",
"lodash": "^4.5.1", "lodash": "^4.5.1",
"uglifyify": "^3.0.1", "uglifyify": "^3.0.1",
"vinyl-buffer": "^1.0.0", "vinyl-buffer": "^1.0.0",

View File

@ -1,8 +1,9 @@
jest.dontMock("jquery"); jest.dontMock("jquery");
jest.dontMock("../utils"); jest.dontMock("../utils");
describe("utils", function () {
import {formatSize} from "../utils.js" import {formatSize} from "../utils.js"
describe("utils", function () {
it("formatSize", function(){ it("formatSize", function(){
expect(formatSize(1024)).toEqual("1kb"); expect(formatSize(1024)).toEqual("1kb");
expect(formatSize(0)).toEqual("0"); expect(formatSize(0)).toEqual("0");