Skip to content

Commit 034370e

Browse files
committed
fix tests
1 parent 94071cb commit 034370e

3 files changed

Lines changed: 67 additions & 106 deletions

File tree

.circleci/config.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,17 @@ jobs:
55

66
"test":
77
docker:
8-
- image: circleci/node
8+
- image: circleci/python:3.7.0
99
working_directory: ~/fdk-node
1010
steps:
1111
- setup_remote_docker:
1212
docker_layer_caching: true
13-
- run:
14-
name: "Checking Versions"
15-
command: |
16-
node --version
17-
npm --version
1813
- checkout
1914
- run:
2015
name: "test"
2116
command: |
22-
npm install
23-
npm run test
17+
apk add bash
18+
./tests.sh
2419
- deploy:
2520
command: |
2621
if [[ "${CIRCLE_BRANCH}" == "master" && -z "${CIRCLE_PR_REPONAME}" ]]; then

package-lock.json

Lines changed: 63 additions & 97 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"devDependencies": {
2626
"rewire": "4.0.1",
2727
"sinon": "^7.3.2",
28-
"standard": "11.0.1",
28+
"standard": "^11.0.1",
2929
"tape": "^4.9.1",
3030
"tmp": "0.0.33"
3131
}

0 commit comments

Comments
 (0)