Drawing tests structure cleanup

This commit is contained in:
jdescottes
2014-08-26 08:21:58 +02:00
parent 35d4be5d3e
commit b2ab504422
22 changed files with 21 additions and 20 deletions

View File

@ -0,0 +1,15 @@
casper
.start(casper.cli.get('baseUrl')+"?debug")
.then(function () {
this.wait(casper.cli.get('delay'));
})
.then(function () {
this.echo(casper.cli.get('baseUrl')+"?debug");
// If there was a JS error after the page load, casper won't perform asserts
this.test.assertExists('html', 'Casper JS cannot assert DOM elements. A JS error has probably occured.');
this.test.assertExists('#drawing-canvas-container canvas', 'Check if drawing canvas element is created');
})
.run(function () {
this.test.done();
});