mirror of
https://github.com/chaijs/chai
synced 2024-11-15 16:18:02 +00:00
93 lines
1.6 KiB
Makefile
93 lines
1.6 KiB
Makefile
|
|
TESTS = test/*.js
|
|
REPORTER = dot
|
|
|
|
#
|
|
# Browser Build
|
|
#
|
|
|
|
all: chai.js
|
|
|
|
chai.js: node_modules lib/* components
|
|
@printf "==> [Browser :: build]\n"
|
|
@./node_modules/.bin/component-build -s chai -o .
|
|
@mv build.js chai.js
|
|
|
|
#
|
|
# Node Module
|
|
#
|
|
|
|
node_modules: package.json
|
|
@npm install
|
|
|
|
#
|
|
# Components
|
|
#
|
|
|
|
build: components lib/*
|
|
@printf "==> [Component :: build]\n"
|
|
@./node_modules/.bin/component-build --dev
|
|
|
|
components: node_modules component.json
|
|
@printf "==> [Component :: install]\n"
|
|
@./node_modules/.bin/component-install --dev
|
|
|
|
#
|
|
# Tests
|
|
#
|
|
|
|
test: test-node test-phantom
|
|
|
|
test-node: node_modules
|
|
@printf "==> [Test :: Node.js]\n"
|
|
@NODE_ENV=test ./node_modules/.bin/mocha \
|
|
--require ./test/bootstrap \
|
|
--reporter $(REPORTER) \
|
|
$(TESTS)
|
|
|
|
test-cov: node_modules
|
|
@NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- \
|
|
--require ./test/bootstrap \
|
|
$(TESTS) \
|
|
|
|
test-phantom: build
|
|
@printf "==> [Test :: Karma (PhantomJS)]\n"
|
|
@./node_modules/karma/bin/karma start \
|
|
--single-run --browsers PhantomJS
|
|
|
|
test-sauce: build
|
|
@printf "==> [Test :: Karma (Sauce)]\n"
|
|
@CHAI_TEST_ENV=sauce ./node_modules/karma/bin/karma start \
|
|
--single-run
|
|
|
|
test-travisci:
|
|
@echo TRAVIS_JOB_ID $(TRAVIS_JOB_ID)
|
|
@make test-cov
|
|
@make test-sauce
|
|
|
|
#
|
|
# Clean up
|
|
#
|
|
|
|
clean: clean-node clean-browser clean-components clean-cov
|
|
|
|
clean-node:
|
|
@rm -rf node_modules
|
|
|
|
clean-browser:
|
|
@rm -f chai.js
|
|
|
|
clean-components:
|
|
@rm -rf build
|
|
@rm -rf components
|
|
|
|
clean-cov:
|
|
@rm -rf coverage
|
|
|
|
#
|
|
# Instructions
|
|
#
|
|
|
|
.PHONY: all
|
|
.PHONY: test test-all test-node test-phantom test-sauce test-cov
|
|
.PHONY: clean clean-node clean-browser clean-components clean-cov
|