kudos for many examples -- can you add an example of Docker Compose + CodeceptJS?
See original GitHub issueFeature request
Is your feature request related to a problem? Please describe.
I want to develop NextJS locally with Docker Compose because this can run database, api, and nextjs server all with 1 command, and it’s easy-ish to deploy these containersets to the cloud. Thank you for making Next and so many examples.
However it’s somewhat unclear how to test nextjs locally with docker-compose (or perhaps i missed a link and this could be published more clearly)
Describe the solution you’d like
Please add an example of how you think users should test NextJS locally in docker-compose with ideally CodeceptJS
Describe alternatives you’ve considered
Currently working on a docker-compose file and just wanted to bring this up as you might know better how to implement such a thing quickly
Additional context
I want to use CodeceptJS because it has simple test syntax which even non-technical folks could understand, so I can focus more on development and less on figuring out how to write tests https://github.com/Codeception/CodeceptJS
Feature('CodeceptJS demo');
Scenario('check Welcome page on site', (I) => {
I.amOnPage('/');
I.see('Welcome');
});
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:5 (4 by maintainers)
Thanks … I did get it working over the weekend, and could potentially make a PR
This issue has been automatically locked due to no recent activity. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you.