blob: 9036b8f373bd62fe1d1dbf09724ff78c0c1ea4a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
page = require('webpage').create()
page.settings.userAgent = 'phantom'
# ensure that the elements we test the link hints on are actually visible
page.viewportSize =
width: 900
height: 600
page.onConsoleMessage = (msg) ->
console.log msg
system = require 'system'
fs = require 'fs'
pathParts = system.args[0].split(fs.separator)
pathParts[pathParts.length - 1] = ''
dirname = pathParts.join(fs.separator)
page.open dirname + 'dom_tests.html', (status) ->
if status != 'success'
console.log 'Unable to load tests.'
phantom.exit 1
testsFailed = page.evaluate ->
Tests.run()
return Tests.testsFailed
if testsFailed > 0
phantom.exit 1
else
phantom.exit 0
|