From ce48d3176929481eae19f1d7536823de56fbb9d3 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Thu, 3 Jan 2019 06:12:27 +0100 Subject: Add missing space and semicolons --- ts/features/steps/composition.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ts/features/steps/composition.ts') 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'); }); -- cgit v1.2.3