summaryrefslogtreecommitdiff
path: root/assertion/features/steps/chai-expect.js
diff options
context:
space:
mode:
Diffstat (limited to 'assertion/features/steps/chai-expect.js')
-rw-r--r--assertion/features/steps/chai-expect.js6
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
+})