-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Makefile
36 lines (30 loc) · 890 Bytes
/
Makefile
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
33
34
35
36
test: test-node lint
install:
yarn install
test-node:
node scripts/run-node-tests.js
test-browser:
node scripts/run-browser-tests-live-reload.js
test-full: build test
node scripts/run-saucelabs-tests.js
test-ie: build test
node scripts/run-saucelabs-tests.js ie
test-safari: build test
node scripts/run-saucelabs-tests.js safari
test-firefox: build test
node scripts/run-saucelabs-tests.js firefox
test-chrome: build test
node scripts/run-saucelabs-tests.js chrome
test-android: build test
node scripts/run-saucelabs-tests.js android
test-ios: build test
node scripts/run-saucelabs-tests.js ios
test-opera: build test
node scripts/run-saucelabs-tests.js opera
tunnel:
node scripts/create-tunnel.js
build:
node scripts/compile-builds.js
lint:
./node_modules/.bin/eslint tests/* src/* plugins/* storages/* \
--ignore-pattern src/addon/lib/json2.js \