Skip to content

Commit

Permalink
Updated: dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Molunerfinn committed May 10, 2018
1 parent 7ffc0cd commit 087e6b9
Show file tree
Hide file tree
Showing 3 changed files with 1,359 additions and 717 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -21,14 +21,14 @@
},
"homepage": "https://github.com/Molunerfinn/FE-Learning#readme",
"devDependencies": {
"jest": "^21.2.1",
"@types/jest": "^21.1.5",
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"jest": "^21.2.1",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"coveralls": "^3.0.0",
"source-map-support": "^0.5.0"
"tslint-config-standard": "^7.0.0"
},
"dependencies": {
"ts-jest": "^21.1.4",
Expand Down
4 changes: 2 additions & 2 deletions test/day-of-week.spec.ts
Expand Up @@ -10,7 +10,7 @@ test('Should return Tuesday when inputing 20170103', () => {
expect(result).toBe('Tuesday')
})

test('Should return Wednesday when inputing 20171101', () => {
let result = dayOfWeek('20171101')
test('Should return Wednesday when inputing 20301106', () => {
let result = dayOfWeek('20301106')
expect(result).toBe('Wednesday')
})

0 comments on commit 087e6b9

Please sign in to comment.