UNPKG
marionette-device-host
Version:
latest (1.0.0)
1.0.0
0.1.0
0.0.2
0.0.1
marionette-js-runner host for device
marionette-device-host
/
Makefile
18 lines
(13 loc)
•
278 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
default: node_modules
.PHONY
: clean
clean:
rm -rf node_modules/
node_modules: package.json
npm install
.PHONY
: test
test: default
./node_modules/.bin/marionette-mocha test/smoke_test.js --host
$(
shell
pwd)
/index.js
.PHONY
: ci
ci:
nohup Xvfb :99 & DISPLAY=:99 make test