1
0

Remove babel from the tutorial, assertion, async

This commit is contained in:
2024-12-19 23:54:35 +01:00
parent ce48d31769
commit 53e4c5dba6
34 changed files with 18352 additions and 9029 deletions

View File

@ -1,7 +0,0 @@
module.exports = {
presets: [
[ '@babel/env', {
useBuiltIns: 'usage'
}]
]
}

View File

@ -1,4 +1,4 @@
import { Given, When, Then } from 'cucumber'
import { Given, When, Then } from '@cucumber/cucumber'
import { expect } from 'chai'
Given('the start value is {int}', function (int) {

View File

@ -1,4 +1,4 @@
import { Given, When, Then } from 'cucumber'
import { Given, When, Then } from '@cucumber/cucumber'
import { expect } from 'chai'
Given('the start value is {string}', function (string) {

3592
3bg/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -3,17 +3,14 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "cucumber-js --require-module '@babel/register'"
"test": "cucumber-js"
},
"author": "Eugen Wissner <belka@caraus.de>",
"license": "MPL-2.0",
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"cucumber": "^5.0.3"
"@cucumber/cucumber": "^11.1.1",
"chai": "^5.1.2"
}
}