welsonjs/test/test.example.js

20 lines
373 B
JavaScript
Raw Normal View History

2020-07-27 09:07:33 +00:00
(function() {
return {
setUp: function() {
inform('Starting...');
},
2020-07-27 06:41:55 +00:00
2020-07-27 08:14:39 +00:00
tearDown: function() {
inform('Finishing...')
},
2020-07-27 06:41:55 +00:00
2020-07-27 08:14:39 +00:00
testGreenTest: function () {
assert("this is true", true);
},
2020-07-27 06:41:55 +00:00
2020-07-27 06:44:33 +00:00
testRedTest: function () {
assert("this is false", false);
}
};
2020-07-27 06:41:55 +00:00
})();