Skip to content

Commit 93cb54d

Browse files
committed
fix: circleci config
1 parent 3165f6b commit 93cb54d

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

Diff for: package.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
},
1313
"dependencies": {
1414
"@types/mocha": "^5.2.5",
15+
"@types/chai": "^4.1.7",
1516
"@types/node": "^10.12.21"
1617
},
1718
"devDependencies": {

Diff for: src/App.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const { add } = require('./App');
2-
const chai = require('chai');
1+
import chai from 'chai';
2+
import { add } from './App';
33

44
const should = chai.should();
55

Diff for: tslint.json

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"no-conditional-assignment": true,
1010
"no-consecutive-blank-lines": false,
1111
"quotemark": [true, "single"],
12+
"arrow-parens": [true, "ban-single-arg-parens"],
1213
"no-console": {
1314
"severity": "warning",
1415
"options": ["debug", "info", "log", "time", "timeEnd", "trace"]

Diff for: yarn.lock

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
# yarn lockfile v1
33

44

5+
"@types/chai@^4.1.7":
6+
version "4.1.7"
7+
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.1.7.tgz#1b8e33b61a8c09cbe1f85133071baa0dbf9fa71a"
8+
integrity sha512-2Y8uPt0/jwjhQ6EiluT0XCri1Dbplr0ZxfFXUz+ye13gaqE8u5gL5ppao1JrUYr9cIip5S6MvQzBS7Kke7U9VA==
9+
510
"@types/mocha@^5.2.5":
611
version "5.2.5"
712
resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-5.2.5.tgz#8a4accfc403c124a0bafe8a9fc61a05ec1032073"

0 commit comments

Comments
 (0)