Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
siarheidudko committed Jan 31, 2024
1 parent e23989d commit d72d82f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"lint": "./node_modules/.bin/eslint -c .eslintrc.js --ext .ts src",
"prebuild": "npm run lint",
"build": "./node_modules/.bin/tsc --declaration",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --exit ./test/*.test.js",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --exit ./test/*.test.js -r chai/register-expect.js",
"doc": "./node_modules/.bin/typedoc --entryPointStrategy expand src",
"update": "eval \"$(node -e 'const t = require(`./package.json`);const ignore = require(`./ignoreUpdatesModules.json`);console.log(`npm i ${(Object.keys(t.dependencies||{}).filter((e)=>ignore.base.indexOf(e) === -1).map((e)=>(`${e}@latest`)).join(` `))} --save&&npm i ${(Object.keys(t.devDependencies||{}).filter((e)=>ignore.dev.indexOf(e) === -1).map((e)=>(`${e}@latest`)).join(` `))} --save-dev`);')\""
},
Expand Down
1 change: 0 additions & 1 deletion test/loadStripe.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"use strict";
const { describe, it } = require("mocha");
const { expect } = import("chai");
const { Stripe: StripeAdmin } = require("stripe");
const {
stripeAdminSDK,
Expand Down

0 comments on commit d72d82f

Please sign in to comment.