test: BDD / acceptance tests

Implement acceptance testing using codeceptjs and puppeteer.
This commit is contained in:
Daniel Ruf
2019-05-02 11:08:41 +02:00
parent 9d7be476ad
commit d468ca7c5f
6 changed files with 57 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
// in this file you can append custom step methods to 'I' object
module.exports = function() {
return actor({
// Define custom steps here, use 'this' to access default methods of I.
// It is recommended to place a general 'login' function here.
});
}