[NEW TEST] Automated E2E Testing
See original GitHub issueUse Dockerfiles and docker-compose
to allow for E2E tests to be run via GitHub Actions. This will allow for even better tracking of changes to the NestJS Ecosystem and will help others know the E2E tests are working properly
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
What is End To End Testing? - BrowserStack
End to end testing (E2E testing) is a software testing method that involves testing an application's workflow from beginning to end. This method ......
Read more >What is end-to-end testing? | CircleCI
End-to-end testing, also known as E2E testing, is a methodology used for ensuring that applications behave as expected and that the flow of ......
Read more >What is End-to-End Testing? | E2E Testing Tools - Katalon
The main purpose of End-to-end (E2E) testing is to test from the end user's experience by simulating the real user scenario and validating...
Read more >A Complete End to End (E2E) Testing Tutorial - LambdaTest
A comprehensive end to end Testing tutorial that covers what E2E Testing is, its importance, benefits, and how to perform it with real-time...
Read more >What Is END-TO-END Testing: E2E Testing Framework with ...
Avo Assure is a 100% scriptless test automation solution that helps you test end-to-end business processes with a few clicks of the buttons....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ll try to setup for my project and contribute once I figure it out.
Thinking out loud on the E2E Testing example. @jmcdo29 If you have any idea to simplify it, that would be great!
2 Apps Will Be Created
e2e-example-redis-publisher
have a single REST endpoint, which when called will publish an event to redise2e-example-redis-subscriber
will listen to the event from redis and save the data in mongoDB. It also expose a single REST endpoint which can be called to retrieve the saved data.Dockerfile
on how to build each apps will be available in their respective folder.A
e2e-testing
folder will be added for E2E test scriptsThe endpoints of the request will be injected by environment variables.
A single
docker-compose.yaml
file in the project rootdocker-compose run
in GitHub Actions.