File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22angularjs.netrc
33jstd.log
44.DS_Store
5+ gen_docs.disable
6+ test.disable
57regression /temp * .html
68performance /temp * .html
79.idea /workspace.xml
Original file line number Diff line number Diff line change 11#! /bin/bash
2- . ~ /.bashrc
3- node docs/spec/specs.js --noColor | grep -v ' /lib/jasmine' && node docs/src/gen-docs.js
2+ if [ ! -e gen_docs.disable ]; then
3+ /usr/bin/env node docs/spec/specs.js --noColor | grep -v ' /lib/jasmine' && node docs/src/gen-docs.js
4+ fi
Original file line number Diff line number Diff line change 11#! /bin/sh
22tests=$1
3- if [[ $tests = " " ]]; then
4- tests=" all"
5- fi
63
7- java -Xmx1g -jar lib/jstestdriver/JsTestDriver.jar --config jsTestDriver-coverage.conf --testOutput=tmp/lcov --tests " $tests "
4+ java -Xmx1g -jar lib/jstestdriver/JsTestDriver.jar --config jsTestDriver-coverage.conf --testOutput=tmp/lcov --tests all $@
85genhtml -o tmp/coverage-html/ tmp/lcov/jsTestDriver.conf-coverage.dat
96echo " done! check out tmp/coverage-html/index.html"
Original file line number Diff line number Diff line change 22tests=$1
33norecompile=$2
44
5- if [[ $tests = " " ]]; then
6- tests=" all"
7- fi
8-
95if [[ $norecompile = " " ]]; then
106 rake compile
117fi
128
13- java -jar lib/jstestdriver/JsTestDriver.jar --tests " $tests " --config jsTestDriver-perf.conf
9+ java -jar lib/jstestdriver/JsTestDriver.jar --tests all --config jsTestDriver-perf.conf $@
Original file line number Diff line number Diff line change 11#! /bin/bash
2- tests=$1
3- if [[ $tests = " " ]]; then
4- tests=" all"
5- fi
2+ if [ ! -e test.dissable ]; then
3+ tests=$1
4+
5+ java -jar lib/jstestdriver/JsTestDriver.jar --tests all $@
6+ # java -jar lib/jstestdriver/JsTestDriver.jar --tests all --config jsTestDriver-jquery.conf $@
67
7- java -jar lib/jstestdriver/JsTestDriver.jar --tests " $tests "
8- # java -jar lib/jstestdriver/JsTestDriver.jar --tests "$tests" --config jsTestDriver-jquery.conf
8+ fi
You can’t perform that action at this time.
0 commit comments