This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/tests
Tom Chauveau 9927b8d94d
Refactor platform type to string to support any kind of platform
Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
2021-12-23 16:30:30 +01:00
..
cli
core
ops
plan Refactor platform type to string to support any kind of platform 2021-12-23 16:30:30 +01:00
stdlib/terraform/s3
tasks Merge pull request #1288 from TomChv/fix/fs-naming 2021-12-23 15:03:39 +01:00
cli.bats
core.bats
helpers.bash ci: fix bats tests 2021-12-17 16:02:48 -08:00
ops.bats
package.json ci: fix bats tests 2021-12-17 16:02:48 -08:00
plan.bats Add tests on plan platform configuration 2021-12-23 15:47:11 +01:00
README.md
secrets_sops.yaml renamed files to avoid camelCase; moved token to common secrets file 2021-12-22 15:44:16 -07:00
tasks.bats ported FetchHTTP to HTTPFetch 2021-12-22 17:10:33 -07:00
yarn.lock

Testing

TL;DR

# Install dependencies
yarn install

# Install gnu parallel if needed
# macOS
brew install parallel
# Debian derivatives
# apt-get install parallel

# Install sops if needed
# macOS
brew install sops

# Run all tests
yarn test

By default, the dagger binary is expected to be found in ../cmd/dagger/dagger relative to the tests directory.

If you need to change this, pass along DAGGER_BINARY=somewhere/dagger

Run a single test

To run a single test:

make && ./tests/node_modules/.bin/bats "./tests/<TESTFILE>.bats" -f "<TESTNAME>"