mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 01:02:00 -07:00
fix(CI): Testing CI some more
This commit is contained in:
+4
-4
@@ -1,6 +1,6 @@
|
||||
const common = require('./env/common')
|
||||
const common = require("./env/common");
|
||||
|
||||
const env = process.env.TORLIST_ENV || 'development'
|
||||
const config = require(`./env/${env}`)
|
||||
const env = process.env.AVAX_DEX_ENV || "development";
|
||||
const config = require(`./env/${env}`);
|
||||
|
||||
module.exports = Object.assign({}, common, config)
|
||||
module.exports = Object.assign({}, common, config);
|
||||
|
||||
Generated
+4
-4
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "ipfs-swap-service",
|
||||
"version": "1.1.0",
|
||||
"name": "avax-dex",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "ipfs-swap-service",
|
||||
"version": "1.1.0",
|
||||
"name": "avax-dex",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@chris.troutner/ipfs": "2.0.2",
|
||||
|
||||
+5
-5
@@ -6,14 +6,14 @@
|
||||
"scripts": {
|
||||
"start": "node index.js",
|
||||
"test": "npm run test:all",
|
||||
"test:all": "export TORLIST_ENV=test && nyc --reporter=text mocha --exit --timeout 15000 --recursive test/unit test/e2e/automated/",
|
||||
"test:unit": "export TORLIST_ENV=test && mocha --exit --timeout 15000 --recursive test/unit/",
|
||||
"test:e2e:auto": "export TORLIST_ENV=test && mocha --exit --timeout 15000 test/e2e/automated/",
|
||||
"test:temp": "export TORLIST_ENV=test && mocha --exit --timeout 15000 -g '#rate-limit' test/unit/json-rpc/",
|
||||
"test:all": "export AVAX_DEX=test && nyc --reporter=text mocha --exit --timeout 15000 --recursive test/unit test/e2e/automated/",
|
||||
"test:unit": "export AVAX_DEX=test && mocha --exit --timeout 15000 --recursive test/unit/",
|
||||
"test:e2e:auto": "export AVAX_DEX=test && mocha --exit --timeout 15000 test/e2e/automated/",
|
||||
"test:temp": "export AVAX_DEX=test && mocha --exit --timeout 15000 -g '#rate-limit' test/unit/json-rpc/",
|
||||
"lint": "standard --env mocha --fix",
|
||||
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
|
||||
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
||||
"coverage:report": "export TORLIST_ENV=test && nyc --reporter=html mocha --exit --timeout 15000 --recursive test/unit/ test/e2e/automated/"
|
||||
"coverage:report": "export AVAX_DEX=test && nyc --reporter=html mocha --exit --timeout 15000 --recursive test/unit/ test/e2e/automated/"
|
||||
},
|
||||
"author": "Chris Troutner <chris.troutner@gmail.com>",
|
||||
"contributors": [
|
||||
|
||||
Reference in New Issue
Block a user