You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be very cool to create a docker image to quickly start the app in a test container.
Example :
version: '3.8'services:
test-gui:
image: majestic:1.8-alpineenvironment:
# Usage : define arguments via environment variables
- MAJESTIC_DEBUG=true
- MAJESTIC_CONFIG=...# Pros : ability to pass env variables to jest
- TEST_DATABASE_URL=postgres://test_user:test_password@test_db:5432/test_dbdepends_on:
# Pros : ability to depend on other services (such as a DB)
- test_dbvolumes:
# Usage : Define a volume to specify the path of the project to test, eg.
- .:/usr/src/app# Pros : Ability to persist jest cache in a volume
- jestCache:/cache/jestports:
- '4000:4000'volumes:
jestCache:
driver: local
The text was updated successfully, but these errors were encountered:
Is this a bug report or a feature request?
This is a feature request
Version Info
Feature
It would be very cool to create a docker image to quickly start the app in a test container.
Example :
The text was updated successfully, but these errors were encountered: