File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ concurrency:
9
9
cancel-in-progress : true
10
10
jobs :
11
11
e2e :
12
- name : E2E for ${{ matrix.env }}
12
+ name : Playwright E2E tests
13
13
env :
14
14
DOCKER_FILE : docker-compose.ci.yml
15
15
strategy :
48
48
if : always()
49
49
uses : actions/upload-artifact@v4
50
50
with :
51
- name : code-coverage-report
51
+ name : e2e-playwright-results
52
52
path : artifacts
53
53
retention-days : 3
Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ wp --allow-root core install --url="http://localhost:8889" --admin_user="admin"
4
4
mkdir -p /var/www/html/wp-content/uploads
5
5
chmod -R 777 /var/www/html/wp-content/uploads/*
6
6
wp --allow-root plugin install classic-editor
7
+ wp --allow-root theme install twentytwentyone
7
8
8
9
# activate
9
10
wp --allow-root plugin activate visualizer
10
- wp --allow-root theme activate twentynineteen
11
+ wp --allow-root theme activate twentytwentyone
11
12
12
13
# set this constant so that the specific hooks are loaded
13
14
wp --allow-root config set TI_CYPRESS_TESTING true --raw
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ async function globalSetup( config ) {
28
28
29
29
// Reset the test environment before running the tests.
30
30
await Promise . all ( [
31
- requestUtils . activateTheme ( 'twentytwentyone' ) ,
31
+ // requestUtils.activateTheme( 'twentytwentyone' ),
32
32
// Disable this test plugin as it's conflicting with some of the tests.
33
33
// We already have reduced motion enabled and Playwright will wait for most of the animations anyway.
34
34
// requestUtils.deactivatePlugin(
You can’t perform that action at this time.
0 commit comments