Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e034c73
test: migration to playwright (WIP)
sbaron-at-wiris Nov 13, 2025
f390e99
test: enable e2e tests to run locally
atomas-at-wiris Nov 13, 2025
15bc671
test: remove cypress and add pw workflow
atomas-at-wiris Nov 14, 2025
c49bfbc
ci: fix e2e test execution
atomas-at-wiris Nov 14, 2025
0bf9cd2
ci: fix e2e test execution
atomas-at-wiris Nov 14, 2025
732612f
test: remove committed .only
atomas-at-wiris Nov 14, 2025
0cb1eab
test: fix staging execution
atomas-at-wiris Jan 29, 2026
9982cf3
test: add 1 worker in CI
atomas-at-wiris Jan 29, 2026
55a3798
test: fix ports
atomas-at-wiris Jan 29, 2026
353b3b7
test: correct ports in readme
atomas-at-wiris Jan 29, 2026
ccf5154
test: delete always from test action
atomas-at-wiris Jan 29, 2026
7e10f74
test: deploy demos via serve-static to run e2e tests
atomas-at-wiris Jan 29, 2026
ac0b08a
test: fix tinymce8 e2e test run on ci
atomas-at-wiris Jan 29, 2026
4184627
test: fix action for tinymce8
atomas-at-wiris Jan 29, 2026
65f097f
test: limit ci time execution
atomas-at-wiris Jan 29, 2026
17c12de
fix: renamed main by master in e2e workflow
atomas-at-wiris Jan 29, 2026
67f91b3
ci: add blob reporter to e2e workflow
sbaron-at-wiris Feb 12, 2026
b86b850
test: re-enable ckeditor4 testing on CI
atomas-at-wiris Feb 16, 2026
b326550
test: update serve-static command
atomas-at-wiris Feb 16, 2026
9a4dafb
chore: upload ck5 telemeter wasm file
atomas-at-wiris Feb 16, 2026
0b6e318
ci: update ci tests ckeditor4 build
atomas-at-wiris Feb 16, 2026
41695aa
test: fix tinymce8 port
atomas-at-wiris Feb 16, 2026
9f33763
test: update e2e tests ci env variables management
atomas-at-wiris Feb 16, 2026
b50921c
test: update e2e tests docs
atomas-at-wiris Feb 16, 2026
b88018b
chore: revert ckeditor5 undesired changed files
atomas-at-wiris Feb 16, 2026
7ae9f0a
test: delete duplicated e2e tests readme
atomas-at-wiris Feb 16, 2026
2885444
ci: rename e2e tests action
atomas-at-wiris Feb 16, 2026
2bf6cd9
test: remove list reporter duplicate
sbaron-at-wiris Feb 18, 2026
1e94f83
test: add playwright extension
dadalid-at-wiris Mar 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
146 changes: 0 additions & 146 deletions .github/workflows/cypress-Run-tests-with-npm-packages.yml

This file was deleted.

108 changes: 108 additions & 0 deletions .github/workflows/run-e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
name: E2E Tests - All Editors

on:
push:
branches:
- master
pull_request:
workflow_dispatch:

jobs:
# Matrix strategy to enable per html editor parallelization
e2e-tests:
name: E2E Tests - ${{ matrix.editor }}
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
editor:
- generic
- ckeditor4
- ckeditor5
- froala
- tinymce5
- tinymce6
- tinymce7
- tinymce8

steps:
- uses: actions/checkout@v5

- uses: actions/setup-node@v4
with:
node-version: "23.x"

- name: Install dependencies
run: |
yarn install
yarn playwright install --with-deps

- name: Build ${{ matrix.editor }} package
if: matrix.editor != 'tinymce8'
run: |
yarn nx build ${{ matrix.editor }}
yarn nx build html-${{ matrix.editor }}
env:
CKEDITOR4_API_KEY: ${{ secrets.CKEDITOR4_API_KEY }}
FROALA_API_KEY: ${{ secrets.FROALA_API_KEY }}

- name: Build tinymce8 packages
if: matrix.editor == 'tinymce8'
run: |
yarn nx build tinymce7
yarn nx build html-tinymce8

- name: Run E2E tests for ${{ matrix.editor }}
id: e2e
run: HTML_EDITOR=${{ matrix.editor }} PLAYWRIGHT_BLOB_OUTPUT_NAME=report-${{ matrix.editor }}.zip yarn test:e2e
continue-on-error: true
env:
CKEDITOR4_API_KEY: ${{ secrets.CKEDITOR4_API_KEY }}
FROALA_API_KEY: ${{ secrets.FROALA_API_KEY }}

- name: Publish test results for ${{ matrix.editor }}
uses: dorny/test-reporter@d61b558e8df85cb60d09ca3e5b09653b4477cea7 # v2.0.0
with:
name: E2E Tests - ${{ matrix.editor }}
path: tests/e2e/test-results/results.xml
reporter: java-junit
fail-on-error: ${{ steps.e2e.outcome == 'failure' }}
continue-on-error: true

- name: Upload blob report for ${{ matrix.editor }}
uses: actions/upload-artifact@v4
with:
name: blob-report-${{ matrix.editor }}
path: blob-report
retention-days: 1

merge-reports:
if: always()
needs: [e2e-tests]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: "23.x"

- name: Install dependencies
run: yarn install

- name: Download all blobs
uses: actions/download-artifact@v4
with:
path: all-blob-reports
pattern: blob-report-*
merge-multiple: true

- name: Merge into HTML Report
run: npx playwright merge-reports --reporter html ./all-blob-reports

- name: Upload Final HTML Report
uses: actions/upload-artifact@v4
with:
name: final-playwright-report
path: playwright-report/
retention-days: 2
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@
package-lock.json
packages/*/yarn.lock

# Cypress
cypress/screenshots
cypress/videos

node_modules

# Verdaccio
Expand Down
1 change: 1 addition & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"ms-vsliveshare.vsliveshare", // Live Share
"visualstudioexptteam.vscodeintellicode", // IntelliCode
"thundergang.thunder-client", // Thunder Client
"ms-playwright.playwright", // Playwright

// GITHUB
"eamodio.gitlens", // GitLens
Expand Down
8 changes: 0 additions & 8 deletions cypress.json

This file was deleted.

88 changes: 0 additions & 88 deletions cypress/README.md

This file was deleted.

Loading
Loading