Skip to content

Commit

Permalink
Jest
Browse files Browse the repository at this point in the history
  • Loading branch information
Luligu committed Jul 30, 2024
1 parent bce17ad commit 31f3746
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,22 @@
"start:ws": "node dist/wsClient.js startWsClient",
"start:shellyDevice": "node dist/shellyDevice.js startShelly",
"start:shelly": "node dist/shelly.js shelly",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:verbose": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:platform": "node --experimental-vm-modules node_modules/jest/bin/jest.js index.test.ts platform.test.ts --coverage",
"test:auth": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/auth.test.ts --coverage",
"test:mdns": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/mdnsScanner.test.ts --coverage",
"test:coap": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/coapServer.test.ts --coverage",
"test:mcast": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/mcastServer.test.ts --coverage",
"test:ws": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/wsClient.test.ts --coverage",
"test:utils": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/utils.spec.ts --coverage",
"test:shellyProperty": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyProperty.test.ts --coverage",
"test:shellyComponent": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyComponent.test.ts --coverage",
"test:mock": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyDevice.mock.test.ts --coverage",
"test:real": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyDevice.real.test.ts --coverage",
"test:shelly": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/shelly.test.ts --coverage",
"test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:verbose": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
"test:watch": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:platform": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js index.test.ts platform.test.ts --coverage",
"test:auth": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/auth.test.ts --coverage",
"test:mdns": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/mdnsScanner.test.ts --coverage",
"test:coap": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/coapServer.test.ts --coverage",
"test:mcast": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/mcastServer.test.ts --coverage",
"test:ws": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/wsClient.test.ts --coverage",
"test:utils": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/utils.spec.ts --coverage",
"test:shellyProperty": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyProperty.test.ts --coverage",
"test:shellyComponent": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyComponent.test.ts --coverage",
"test:mock": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyDevice.mock.test.ts --coverage",
"test:real": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shellyDevice.real.test.ts --coverage",
"test:shelly": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js src/shelly.test.ts --coverage",
"lint": "eslint --max-warnings=0 .",
"lint:fix": "eslint --fix --max-warnings=0 .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
Expand Down

0 comments on commit 31f3746

Please sign in to comment.