git.delta.rocks / unique-network / refs/commits / 85c4b36cd0ab

difftreelog

source

js-packages/tests/package.json1.2 KiBsourcehistory
1{2    "author": "",3    "license": "SEE LICENSE IN ../../../LICENSE",4    "description": "Interfaces for interacting with contracts and contract ABIs",5    "engines": {6        "node": ">=16"7    },8    "name": "@unique/tests",9    "type": "module",10    "version": "1.0.0",11    "main": "",12    "devDependencies": {13        "mocha": "^10.1.0"14    },15    "scripts": {16        "setup": "yarn ts-node --esm ./util/globalSetup.ts",17        "setIdentities": "yarn ts-node --esm ./util/identitySetter.ts",18        "checkRelayIdentities": "yarn ts-node --esm ./util/relayIdentitiesChecker.ts",19        "_test": "yarn setup && yarn mocha --timeout 9999999 --loader=ts-node/esm.mjs",20        "_testParallel": "yarn setup && yarn mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",21        "test": "yarn _test './**/*.*test.ts'",22        "testParallel": "yarn _testParallel './**/*.test.ts'",23        "testSequential": "yarn _test './**/*.seqtest.ts'",24        "testGovernance": "RUN_GOV_TESTS=1 yarn _test ./**/governance/*.*test.ts",25        "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",26        "load": "yarn _test './**/*.load.ts'"27    }28}