only run CI tests, set fixed difficulty to 150

This commit is contained in:
woodser 2022-12-16 17:33:16 +00:00
parent c81f309fdd
commit 5b7a7beafd
3 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ jobs:
run: npm install run: npm install
- name: Run tests - name: Run tests
run: npm run test -- --baseCurrencyNetwork=XMR_LOCAL run: npm run test -- --baseCurrencyNetwork=XMR_LOCAL -t "CI"
- name: Stop containers - name: Stop containers
if: always() if: always()

View File

@ -36,7 +36,7 @@ services:
"--no-zmq", "--no-zmq",
"--add-exclusive-node=127.0.0.1:28080", "--add-exclusive-node=127.0.0.1:28080",
"--rpc-access-control-origins=http://localhost:8080", "--rpc-access-control-origins=http://localhost:8080",
"--fixed-difficulty=10", "--fixed-difficulty=150",
"--non-interactive", "--non-interactive",
] ]
network_mode: "host" network_mode: "host"
@ -56,7 +56,7 @@ services:
"--confirm-external-bind", "--confirm-external-bind",
"--add-exclusive-node=127.0.0.1:48080", "--add-exclusive-node=127.0.0.1:48080",
"--rpc-access-control-origins=http://localhost:8080", "--rpc-access-control-origins=http://localhost:8080",
"--fixed-difficulty=10", "--fixed-difficulty=150",
"--non-interactive", "--non-interactive",
] ]
network_mode: "host" network_mode: "host"

View File

@ -1455,7 +1455,7 @@ test("Cannot make or take offer with insufficient unlocked funds (CI)", async ()
if (err) throw err; if (err) throw err;
}); });
test("Invalidates offers when reserved funds are spent", async () => { test("Invalidates offers when reserved funds are spent (CI)", async () => {
let err; let err;
let tx; let tx;
try { try {