summaryrefslogtreecommitdiff
path: root/async/features/support/hooks.js
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2024-12-19 23:54:35 +0100
committerEugen Wissner <belka@caraus.de>2024-12-19 23:54:35 +0100
commit53e4c5dba6ede90f0e23b192350b3cc833834523 (patch)
tree5ef55d3d1628ce5099a9cc66f4feaa75b4836c82 /async/features/support/hooks.js
parentce48d3176929481eae19f1d7536823de56fbb9d3 (diff)
downloadcucumber-js-demo-53e4c5dba6ede90f0e23b192350b3cc833834523.tar.gz
Remove babel from the tutorial, assertion, async
Diffstat (limited to 'async/features/support/hooks.js')
-rw-r--r--async/features/support/hooks.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/async/features/support/hooks.js b/async/features/support/hooks.js
index c86df1e..00ac749 100644
--- a/async/features/support/hooks.js
+++ b/async/features/support/hooks.js
@@ -1,4 +1,4 @@
-import { BeforeAll, AfterAll } from 'cucumber'
+import { BeforeAll, AfterAll } from '@cucumber/cucumber'
import express from 'express'
let server
@@ -16,5 +16,3 @@ BeforeAll(function () {
AfterAll(function () {
server.close()
})
-
-