const { Given, When, Then, Before } = require('cucumber');
const { expect } = require('chai');
Given('the local system has an ok version of Node installed', function () {
return 'pending';
});
A step definition adds implemntation details to statements and should be used by Features.
Notes:
const { Given, When, Then, Before } = require('cucumber');
const { expect } = require('chai');
Given('the local system has an ok version of Node installed', function () {
return 'pending';
});