add cypress tests

This commit is contained in:
MxMarx 2023-10-21 21:47:04 -07:00
parent 0cbcfbd273
commit e8432d9a0d
34 changed files with 13497 additions and 56 deletions

View file

@ -11,5 +11,10 @@ RUN apt-get update && \
curl tzdata ffmpeg && \
rm -rf /var/lib/apt/lists/*
# Move tone executable to appropriate directory
COPY --from=sandreas/tone:v0.1.5 /usr/local/bin/tone /usr/local/bin/
# Move tone executable to appropriate directory (this doesn't seem to work in devcontainer because it needs musl)
# COPY --from=sandreas/tone:v0.1.5 /usr/local/bin/tone /usr/local/bin/
RUN wget https://github.com/sandreas/tone/releases/download/v0.1.5/tone-0.1.5-linux-x64.tar.gz && \
tar xzf tone-*.tar.gz && \
mv tone*/tone /usr/local/bin/

View file

@ -15,12 +15,18 @@
"source=abs-server-node_modules,target=${containerWorkspaceFolder}/node_modules,type=volume",
"source=abs-client-node_modules,target=${containerWorkspaceFolder}/client/node_modules,type=volume"
],
"features": {
"ghcr.io/devcontainers/features/desktop-lite:1": {
"password": "vscode"
}
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
3000,
3333
3333,
6080
],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "sh .devcontainer/post-create.sh",