Skip to content

Commit

Permalink
fix(*): small review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Heymdall committed Nov 19, 2018
1 parent acbb30b commit 7888b6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arui-scripts",
"version": "4.0.0-prerelease2",
"version": "4.0.0",
"main": "index.js",
"license": "MPL-2.0",
"repository": {
Expand Down Expand Up @@ -49,7 +49,7 @@
"jest": "23.6.0",
"jest-snapshot-serializer-class-name-to-string": "1.0.0",
"lodash.merge": "4.6.1",
"mini-css-extract-plugin": "^0.4.4",
"mini-css-extract-plugin": "0.4.4",
"null-loader": "0.1.1",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss-calc": "^6.0.1",
Expand Down
2 changes: 1 addition & 1 deletion test/src/__tests__/utils.tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { isSmaller, YesNoEnum } from '../utils';

describe('isSmaller', () => {
it('should return no if a not greater than b', () => {
const result = isSmaller(1 ,2);
const result = isSmaller(1, 2);

expect(result).toBe(YesNoEnum.No);
});
Expand Down

0 comments on commit 7888b6b

Please sign in to comment.