Skip to content

Commit

Permalink
Fix regressions
Browse files Browse the repository at this point in the history
  • Loading branch information
artf committed May 28, 2018
1 parent 8fafaab commit 8e5f714
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"codemirror-formatting": "^1.0.0",
"font-awesome": "^4.7.0",
"keymaster": "^1.6.2",
"promise-polyfill": "^8.0.0",
"spectrum-colorpicker": "^1.8.0",
"underscore": "^1.9.0"
},
Expand All @@ -34,7 +35,6 @@
"lint-staged": "^7.1.2",
"node-sass": "^4.9.0",
"prettier": "^1.13.0",
"promise-polyfill": "^7.1.2",
"sinon": "^5.0.10",
"string-replace-loader": "^2.1.1",
"webpack": "^3.10.0",
Expand Down
2 changes: 1 addition & 1 deletion test/specs/parser/model/ParserHtml.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ module.exports = {

test('Parse class string to array with special classes', () => {
var str = 'test1 test2 test3 test-4 gjs-test';
var result = ['test1', 'test2', 'test3', 'test-4'];
var result = ['test1', 'test2', 'test3', 'test-4', 'gjs-test'];
expect(obj.parseClass(str)).toEqual(result);
});

Expand Down

0 comments on commit 8e5f714

Please sign in to comment.