This project has a playwright implementation so that it is consumed via AWS Lambda, allowing to parallelize the execution of all files and making the execution much faster.
The success of this implementation demonstrates that, in scenarios where E2E testing is needed to validate critical behaviors that are not possible in another type of test, it is possible to use AWS Lambda to run this same test on all Pull Requests, not just a few times in day.
Note: This project was created as a result of study. Identify whether the parallelism presented here suits your case.
With playwright on serverless it was possible to run 110 files parallelized, with 221 tests, in less than 25 seconds. This same test running without parallelization would take 23 minutes.
To see the execution in detail, you can access the pipeline log by clicking here.
The gif below demonstrates the execution:
Running hundreds of Lambda functions that last a few seconds has little impact on the final cost. To implement this parallelism in your project, perform the price calculation.
AWS Lambda Price:
The AWS Lambda free usage tier includes 1M free requests per month and 400,000 GB-seconds of compute time per month.
Source: https://aws.amazon.com/lambda/pricing/
Below are some important CloudWatch metrics.
110 lambda functions were invoked, however my account has a limit of 50 parallel executions, which made the total execution double in time.
The average time that a lambda function takes to run is 7 seconds, which is less than the total of 23 seconds that takes to run the test.
However 23 seconds is a quiet time to wait when running an E2E test in a pipeline. I think we both agree that it's better than 23 minutes.
Limited to 50.
1 invocation per test file in ./tests/E2E.
The longest running lambda function was 10.2 seconds, less than half of the total execution time of all functions.
With a higher concurrent execution we would have better results in total time.
To understand how tests are run and AWS Lambda is built I recommend accessing the pipelines in ./.github/workflows/ and the Makefile.
- Install serverless globally:
npm install --global [email protected]
-
Create AWS Acess keys: https://www.serverless.com/framework/docs/providers/aws/guide/credentials/#creating-aws-access-keys
-
Configure the Serverless Framework CLI to use AWS access keys
serverless config credentials \
--provider aws \
--key <AWS_ACCESS_KEY_ID> \
--secret <AWS_SECRET_ACCESS_KEY>
- And, finally, deploy the application at AWS Lambda:
make deploy
After deploying run the tests using the following command:
make test-serverless
Acess the directory ./tests and execute:
npm ci
Run the test with:
npm test