diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 2ab827d0c..2613f33b2 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -69,9 +69,6 @@ jobs: start: pnpm run dev wait-on: 'http://localhost:9000' browser: chrome - spec: | - cypress/integration/rendering/classDiagram.spec.js - cypress/integration/rendering/flowchart-v2.spec.js - name: Move runtime data if: ${{ steps.cache-snapshot.outputs.cache-hit != 'true' }} @@ -148,9 +145,6 @@ jobs: # e.g. if this action was run from a fork record: ${{ secrets.CYPRESS_RECORD_KEY != '' }} parallel: ${{ secrets.CYPRESS_RECORD_KEY != '' }} - spec: | - cypress/integration/rendering/classDiagram.spec.js - cypress/integration/rendering/flowchart-v2.spec.js env: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} VITEST_COVERAGE: true diff --git a/scripts/runTime.ts b/scripts/runTime.ts index 22c44bba3..d8da3203d 100644 --- a/scripts/runTime.ts +++ b/scripts/runTime.ts @@ -114,19 +114,18 @@ const htmlTable = (data: string[][]): string => { let table = `
${header} | `; - } - table += '
---|
${header} | `) + .join('')} +
${data[i][j]} | `; - } - table += '
${cell} | `).join('')} +