Skip to content

Commit f68ba84

Browse files
committed
integration tests: remove commented daemon step
Remove the currently-commented "After" step for daemon tests. If uncommented, this step would stop a running daemon, which could cause issues for users who had started their daemons before an integration test run and would expect them to still be running after the test run completes. Signed-off-by: Lessley Dennington <[email protected]>
1 parent 7db918a commit f68ba84

File tree

1 file changed

+0
-7
lines changed
  • test/integration/features/step_definitions

1 file changed

+0
-7
lines changed

test/integration/features/step_definitions/daemon.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,3 @@ Then('the daemon is not running', async function (this: IntegrationBundleServerW
2626
var daemonStatus = this.getDaemonState()
2727
assert.strictEqual(daemonStatus, DaemonState.NotRunning)
2828
})
29-
30-
// After({tags: '@daemon'}, async function (this: IntegrationBundleServerWorld) {
31-
// var daemonState = this.getDaemonState()
32-
// if (daemonState === DaemonState.Running) {
33-
// this.runCommand('git-bundle-server web-server stop')
34-
// }
35-
// });

0 commit comments

Comments
 (0)