UNPKG

mimik

Version:

Write end-to-end automation tests in natural language

11 lines (10 loc) 200 B
var Wall = function(items) { this.items = items; this.fall = function(n) { this.items -= n; } this.returned = function() { this.items++; } } module.exports = Wall;