Мне кажется, что флаг mocha --recursive
корректно работает на моей машине, но игнорируется при автоматическом тестировании CI.Это означает, что только 60 тестов выполняются в CircleCI, но ~ 100 выполняется, когда я запускаю npm test
на моей машине.
Частичная структура проекта
|--/test
|----mocha.opts
|----lifecycle.test.js
|----/integration
|------/models
|--------Thing.test.js
|------/controllers
|--------/thing
|----------thingAction.test.js
|--/.circleci
|----config.yml
mocha.opts
--recursive
--timeout 20000
--reporter list
--exit
.circleci / config.yml
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.11
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: yarn test
package.json
"devDependencies": {
"mocha": "^5.2.0",
},
"scripts": {
"test": "npm run lint && npm run mocha-tests && echo 'Done.'",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo 'Your .js files look so good.' && lesshint assets/styles/ --max-warnings=0 && echo 'Your .less files look good, too.'",
"mocha-tests": "node ./node_modules/mocha/bin/mocha test/lifecycle.test.js test/integration/**/*.test.js",
}
В этом примере Thing.test.js
и thingAction.test.js
выполняются локально, но только Thing.test.js
выполняется во время сборки CircleCI.Другими словами, test/integration/**/*.test.js
соответствует обоим именам файлов локально, но только в верхнем подкаталоге CircleCI.
Как убедиться, что все тестовые сценарии запускаются?