| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 | 2 |
| 3 set -evx | 3 set -e |
| 4 . ./scripts/env.sh | 4 . ./scripts/env.sh |
| 5 | 5 |
| 6 # run io tests | |
| 7 dart -c test/io/all.dart | |
| 8 | |
| 9 ./scripts/generate-expressions.sh | 6 ./scripts/generate-expressions.sh |
| 10 ./scripts/analyze.sh | 7 ./scripts/analyze.sh |
| 11 | 8 |
| 12 ./node_modules/jasmine-node/bin/jasmine-node ./scripts/changelog/ | 9 ./node_modules/jasmine-node/bin/jasmine-node ./scripts/changelog/ |
| 13 | 10 |
| 14 ./node_modules/jasmine-node/bin/jasmine-node playback_middleware/spec/ && | 11 ./node_modules/jasmine-node/bin/jasmine-node playback_middleware/spec/ && |
| 15 node "node_modules/karma/bin/karma" start karma.conf \ | 12 node "node_modules/karma/bin/karma" start karma.conf \ |
| 16 --reporters=junit,dots --port=8765 --runner-port=8766 \ | 13 --reporters=junit,dots --port=8765 --runner-port=8766 \ |
| 17 --browsers=Dartium,ChromeNoSandbox --single-run --no-colors | 14 --browsers=Dartium,ChromeNoSandbox --single-run --no-colors --no-color |
| 18 | 15 |
| 19 ./scripts/generate-documentation.sh | 16 ./scripts/generate-documentation.sh |
| 20 | 17 |
| OLD | NEW |