Skip to content

Commit e4632f6

Browse files
committed
Update e2e tests to include --force flag for skipping DKG interval check
* **localNetwork.spec.js** - Add `isForce: true` to `restart` and `stop` tests * **testnetEvonode.spec.js** - Replace `isSafe: true` with `isForce: true` in `restart` and `stop` tests * **testnetFullnode.spec.js** - Add `isForce: true` to `restart` and `stop` tests
1 parent b001422 commit e4632f6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

packages/dashmate/test/e2e/localNetwork.spec.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ describe('Local Network', function main() {
129129
const task = restartNodeTask(config);
130130
await task.run({
131131
isVerbose: true,
132+
isForce: true,
132133
});
133134
}
134135

@@ -146,6 +147,7 @@ describe('Local Network', function main() {
146147
const task = stopNodeTask(config);
147148
await task.run({
148149
isVerbose: true,
150+
isForce: true,
149151
});
150152
}
151153

packages/dashmate/test/e2e/testnetEvonode.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ describe('Testnet Evonode', function main() {
148148

149149
await task.run({
150150
isVerbose: true,
151-
isSafe: true,
151+
isForce: true,
152152
});
153153

154154
// TODO: Assert all services are running
@@ -232,7 +232,7 @@ describe('Testnet Evonode', function main() {
232232

233233
await task.run({
234234
isVerbose: true,
235-
isSafe: true,
235+
isForce: true,
236236
});
237237

238238
// TODO: Assert all services are running

packages/dashmate/test/e2e/testnetFullnode.spec.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ describe('Testnet Fullnode', function main() {
141141

142142
await task.run({
143143
isVerbose: true,
144+
isForce: true,
144145
});
145146

146147
await assertServiceRunning(config, 'core');
@@ -160,6 +161,7 @@ describe('Testnet Fullnode', function main() {
160161

161162
await task.run({
162163
isVerbose: true,
164+
isForce: true,
163165
});
164166

165167
await assertServiceRunning(config, 'core', false);

0 commit comments

Comments
 (0)