mirror of
https://github.com/status-im/re-frame.git
synced 2025-02-23 15:28:09 +00:00
- standardised test namespaces: renamed to use -test suffix and moved to eliminate redundant /test folder - added cljs-test based tests via browser/html. These mimic original karma tests. NOTE: previous lein aliases `once` and `auto` have been replaced by `test-once` , `test-auto` & `karma-once` - update karma.conf & circle.yml - updated CHANGES.md & CONTRIBUTING.md
15 lines
585 B
YAML
15 lines
585 B
YAML
dependencies:
|
|
pre:
|
|
- npm install karma-cli -g
|
|
# To install Chrome 47. Remove once a new build environment comes out with this built in.
|
|
- curl -L -o google-chrome.deb https://s3.amazonaws.com/circle-downloads/google-chrome-stable_current_amd64_47.0.2526.73-1.deb
|
|
- sudo dpkg -i google-chrome.deb
|
|
- sudo sed -i 's|HERE/chrome\"|HERE/chrome\" --disable-setuid-sandbox|g' /opt/google/chrome/google-chrome
|
|
- rm google-chrome.deb
|
|
cache_directories:
|
|
- node_modules
|
|
test:
|
|
override:
|
|
- lein karma-once
|
|
- karma start --single-run --reporters junit,dots
|