@@ -19,3 +19,40 @@ How to add new integration test scenarios to the application:
19
19
> Currently the tests require a built version of the ` dist/run/handlers/cache.cjs ` so you need to
20
20
> run ` npm run build ` before executing the integration tests. In addition, the integration tests
21
21
> need to be prepared before first use. You can do this by running ` npm run pretest ` .
22
+
23
+ ### E2E testing
24
+
25
+ > ** Prerequisite**
26
+ >
27
+ > Needs the ` netlify-cli ` installed and being logged in having access to Netlify Testing
28
+ > Organization
29
+
30
+ The e2e tests can be invoked with ` npm run e2e ` and perform a full e2e test. This means they do the
31
+ following:
32
+
33
+ 1 . Building the next-runtime (just running ` npm run build ` in the repository)
34
+ 2 . Creating a temp directory and copying the provided fixture over to the directory.
35
+ 3 . Packing the runtime with ` npm pack ` to the temp directory.
36
+ 4 . Installing the runtime from the created zip artifact of ` npm pack ` (this is like installing a
37
+ node_module from the registry)
38
+ 5 . Creating a ` netlify.toml ` inside the temp directory of the fixture and adding the runtime as a
39
+ plugin.
40
+ 6 . Running ` netlify deploy --build ` invoking the runtime. This will use the
41
+ [ next-runtime-testing] ( https://app.netlify.com/sites/next-runtime-testing/overview ) as site to
42
+ deploy to.
43
+ 7 . Using the ` deployId ` and ` url ` of the deployed site to run some
44
+ [ playwright] ( https://playwright.dev/ ) tests against, asserting the correctness of the runtime.
45
+ 8 . After the tests where run successfully, it will delete the deployment again and clean everything
46
+ up. In case of a failure, the deploy won't be cleaned up to leave it for troubleshooting
47
+ purposes.
48
+
49
+ #### cleanup old deploys
50
+
51
+ To cleanup old and dangling deploys from failed builds you can run the following script:
52
+
53
+ ``` bash
54
+ npx tsx ./tools/e2e/cleanup-deploys.ts
55
+ ```
56
+
57
+ This will cleanup all created deploys on the
58
+ [ next-runtime-testing] ( https://app.netlify.com/sites/next-runtime-testing/overview ) site.
0 commit comments