diff options
| author | Eugen Wissner <belka@caraus.de> | 2018-12-31 07:44:25 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2018-12-31 07:44:25 +0100 |
| commit | 54fcfda40a14b5c3150faff6b2929a31eeea057a (patch) | |
| tree | b739da73f9d2ede3e2f959d518de0b2f9babe1c5 /assertion/features/steps/chai-expect.js | |
| parent | c623c4d16f14362cc50418e0f6e5875f785f587e (diff) | |
| download | cucumber-js-demo-54fcfda40a14b5c3150faff6b2929a31eeea057a.tar.gz | |
Add node, chai, jest diff comparison
Diffstat (limited to 'assertion/features/steps/chai-expect.js')
| -rw-r--r-- | assertion/features/steps/chai-expect.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/assertion/features/steps/chai-expect.js b/assertion/features/steps/chai-expect.js new file mode 100644 index 0000000..44e7c01 --- /dev/null +++ b/assertion/features/steps/chai-expect.js @@ -0,0 +1,6 @@ +const { expect } = require('chai') +const { Then } = require('cucumber') + +Then('I can choose the expect syntax', function () { + expect(true).to.be.true +}) |
