Cloud Run npm test
vs. npm run e2e-test
#1493
Labels
type: cleanup
An internal cleanup or hygiene concern.
npm test
vs. npm run e2e-test
#1493
Cloud Run testing using the convention of
test
ande2e
tests as two different testing types. This was my original intention for a couple reasons:npm test
npm test
(unit tests take seconds, e2e tests take minutes)This has led to a couple odd things:
npm test
does not run all the testsnpm test
. This is a bit odd.To converge on
npm test
doing all the things while preserving some of the above goals, here's what we might do:test/runner.sh mocha test/*.test.js --timeout=20000
npm run --if-present e2e-test
from.kokoro/build-with-run.sh
@grant carry-over from #1480.
The text was updated successfully, but these errors were encountered: