acceptance/repository-mongodb/README.md
Acceptance tests for @loopback/repository + loopback-connector-mongodb.
If you have a local MongoDB instance listening on localhost and the default
port, use the following command:
npm test
If you have a local or remote MongoDB instance and would like to use that to run the test suite, use the following command:
Linux & MacOS
MONGODB_HOST=<HOST> MONGODB_PORT=<PORT> MONGODB_DATABASE=<DATABASE> npm test
Windows
SET MONGODB_HOST=<HOST>
SET MONGODB_PORT=<PORT>
SET MONGODB_DATABASE=<DATABASE>
npm test
If you do not have a local MongoDB instance, you can also run the test suite with very minimal requirements.
Assuming you have Docker installed, run the following script which would spawn a MongoDB instance on your local:
source setup.sh <HOST> <PORT> <DATABASE>
Where <HOST>, <PORT> and <DATABASE> are optional parameters. The default
values are localhost, 27017 and testdb respectively.
Run the test:
npm test
See all contributors.
MIT