summaryrefslogtreecommitdiff
path: root/ts/features/steps/composition.ts
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2019-01-03 06:12:27 +0100
committerEugen Wissner <belka@caraus.de>2019-01-03 06:12:27 +0100
commitce48d3176929481eae19f1d7536823de56fbb9d3 (patch)
tree9e3c27cdc1f2567c71efb087a821ee5da0e5866d /ts/features/steps/composition.ts
parent48a1f3756b927098357107baf4009740f562520a (diff)
downloadcucumber-js-demo-ce48d3176929481eae19f1d7536823de56fbb9d3.tar.gz
Add missing space and semicolons
Diffstat (limited to 'ts/features/steps/composition.ts')
-rw-r--r--ts/features/steps/composition.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/ts/features/steps/composition.ts b/ts/features/steps/composition.ts
index f1ee009..220c6ea 100644
--- a/ts/features/steps/composition.ts
+++ b/ts/features/steps/composition.ts
@@ -2,9 +2,9 @@ import { When, Then } from 'cucumber';
import { expect } from 'chai';
When('the step definitions are written in {word}', function (language: string) {
- this.language = language
+ this.language = language;
});
Then("I don't get a warning about undefined steps", function () {
- expect(this.language).to.equal('TypeScript')
+ expect(this.language).to.equal('TypeScript');
});