fix(CI): Testing CI some more

This commit is contained in:
Chris Troutner
2021-11-24 14:27:29 -08:00
parent ccc87d2145
commit fa037c5617
3 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -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);
+4 -4
View File
@@ -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
View File
@@ -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": [