Skip to content

Commit dfac066

Browse files
committed
Cucumber setup now supports TS
1 parent 47f13ba commit dfac066

File tree

6 files changed

+41
-12
lines changed

6 files changed

+41
-12
lines changed

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ yarn test[:w]
5555

5656
Runs all tests from `test` folder. It runs `build` internally so it doesn't have to be run manually. When run with `:w` it will watch for changes, rebuild and rerun test automatically.
5757

58+
```bash
59+
yarn bdd
60+
```
61+
62+
Runs all BDD tests from `bdd` directory. It runs `build` internally so it doesn't have to be run manually.
63+
5864
```bash
5965
yarn coverage
6066
```
@@ -73,6 +79,18 @@ yarn coverage:generate
7379

7480
Checks code coverage and generates HTML report.
7581

82+
```bash
83+
yarn coverage:[unit|bdd]
84+
```
85+
86+
Generates code coverage for given set of tests. _It's a subtask and should not be run separately_.
87+
88+
```bash
89+
yarn coverage:report
90+
```
91+
92+
Creates coverage report based on generated coverage files from unit and bdd tests. _It's a subtask and should not be run separately_.
93+
7694
```bash
7795
yarn dist
7896
```
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
1-
const assert = require("assert");
2-
const { Given, When, Then } = require("@cucumber/cucumber");
1+
import assert from "assert";
2+
import { Given, When, Then } from "@cucumber/cucumber";
3+
4+
const context = {
5+
actualAnswer: ""
6+
};
37

48
Given("no initial conditions", () => {
59
console.log("no initial conditions");
610
});
711

812
When("I ask whether it works", () => {
9-
this.actualAnswer = "It works!";
13+
context.actualAnswer = "It works!";
1014
console.log("I ask whether it works");
1115
});
1216

1317
Then("I should be told {string}", (expectedAnswer) => {
14-
assert.strictEqual(this.actualAnswer, expectedAnswer);
18+
assert.strictEqual(context.actualAnswer, expectedAnswer);
1519
});

cucumber.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
default: "--format-options '{\"snippetInterface\": \"synchronous\"}'"
2+
default: "--format-options '{\"snippetInterface\": \"synchronous\"}' --publish-quiet"
33
};

package.json

+10-5
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,17 @@
88
"build:w": "yarn build -w",
99
"test": "yarn build && ava",
1010
"test:w": "concurrently 'yarn build:w' 'sleep 8 && yarn test -w'",
11-
"bdd": "yarn cucumber-js bdd/features",
12-
"coverage": "yarn coverage:generate && yarn http-server coverage",
13-
"coverage:check": "yarn build && nyc --check-coverage ava",
14-
"coverage:generate": "yarn build && nyc --reporter=html ava",
11+
"bdd": "yarn build && yarn cucumber-js build/bdd/features",
1512
"dist": "rm -rf ./dist && tsc -p tsconfig.dist.json",
1613
"lint": "eslint src/ test/ --ext .ts",
17-
"prepare": "husky install"
14+
"prepare": "husky install",
15+
"postbuild": "copyfiles -f bdd/features/*.feature build/bdd/features",
16+
"coverage": "yarn coverage:generate && yarn http-server coverage",
17+
"coverage:generate": "yarn build && yarn coverage:unit && yarn coverage:bdd && yarn coverage:report",
18+
"coverage:check": "yarn build && yarn coverage:unit && yarn coverage:bdd && nyc report --check-coverage",
19+
"coverage:unit": "nyc --silent yarn ava",
20+
"coverage:bdd": "nyc --silent --no-clean yarn cucumber-js build/bdd/features",
21+
"coverage:report": "nyc report --reporter=html"
1822
},
1923
"author": "Scramjet <[email protected]>",
2024
"license": "AGPL-3.0",
@@ -27,6 +31,7 @@
2731
"assert": "^2.0.0",
2832
"ava": "^3.15.0",
2933
"concurrently": "^6.2.1",
34+
"copyfiles": "^2.4.1",
3035
"eslint": "^8.0.0",
3136
"http-server": "^13.0.2",
3237
"husky": "^7.0.2",

tsconfig.base.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"lib": ["es2019"],
1616
"strict": true,
1717
"resolveJsonModule": true,
18-
"forceConsistentCasingInFileNames": true
18+
"forceConsistentCasingInFileNames": true,
19+
"esModuleInterop": true
1920
},
2021
"typeAcquisition": {
2122
"include": ["node"]

tsconfig.build.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
},
1414
"include": [
1515
"src",
16-
"test"
16+
"test",
17+
"bdd"
1718
]
1819
}

0 commit comments

Comments
 (0)