mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-07-01 01:57:13 -04:00
only run CI tests, set fixed difficulty to 150
This commit is contained in:
parent
c81f309fdd
commit
5b7a7beafd
3 changed files with 4 additions and 4 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -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()
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue