summaryrefslogtreecommitdiff
path: root/1args/features/steps/addition.js
diff options
context:
space:
mode:
Diffstat (limited to '1args/features/steps/addition.js')
-rw-r--r--1args/features/steps/addition.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/1args/features/steps/addition.js b/1args/features/steps/addition.js
new file mode 100644
index 0000000..55b8936
--- /dev/null
+++ b/1args/features/steps/addition.js
@@ -0,0 +1,12 @@
+import { Given, When, Then } from 'cucumber'
+import { expect } from 'chai'
+
+Given('the start value is {int}', function (int) {
+})
+
+When('I add {int}', function (int) {
+})
+
+Then('the result should be {int}', function (int) {
+ expect(int).to.equal(11)
+})