tikiwiki/packages/tiki-pkg-casperjs/jerome-breton/casperjs/tests/clitests/fail-fast/standard/hook.js
2023-11-20 20:52:04 +00:00

11 lines
200 B
JavaScript
Executable File

/* global casper */
casper.test.on('fail', function doSomething() {
'use strict';
casper.echo('fail event fired!');
});
casper.test.begin('hook', 0, function(t) {
'use strict';
t.done();
});