From 3a90116c032f638ba92ec7cf8917dfd6fddef616 Mon Sep 17 00:00:00 2001 From: Robert DeLuca Date: Tue, 20 Jan 2026 03:48:41 -0600 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=A7=AA=20Add=20preview=20command=20to?= =?UTF-8?q?=20static-site=20SDK=20E2E=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/sdk-e2e.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/sdk-e2e.yml b/.github/workflows/sdk-e2e.yml index 3e30d96..519c0c0 100644 --- a/.github/workflows/sdk-e2e.yml +++ b/.github/workflows/sdk-e2e.yml @@ -234,6 +234,12 @@ jobs: VIZZLY_COMMIT_MESSAGE: ${{ github.event.pull_request.head.commit.message || github.event.head_commit.message }} VIZZLY_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.event.head_commit.id }} + - name: Upload preview + working-directory: ./clients/static-site + run: ../../bin/vizzly.js preview ../../test-site + env: + VIZZLY_TOKEN: ${{ secrets.VIZZLY_STATIC_SITE_CLIENT_TOKEN }} + # Ember SDK ember: name: Ember SDK From a3bdd0c024cfb388008e3b89d09aa338970740fa Mon Sep 17 00:00:00 2001 From: Robert DeLuca Date: Tue, 20 Jan 2026 04:08:08 -0600 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=9B=20Fix=20slow=20tab=20pool=20te?= =?UTF-8?q?st=20-=20wrong=20page=20path=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- clients/static-site/tests/e2e.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/static-site/tests/e2e.test.js b/clients/static-site/tests/e2e.test.js index 7ee200a..b78c1ef 100644 --- a/clients/static-site/tests/e2e.test.js +++ b/clients/static-site/tests/e2e.test.js @@ -326,9 +326,9 @@ describe('Static-Site E2E with shared test-site', { skip: !runE2E }, () => { pool = createTabPool(browser, 2); let pages = [ - { path: '/index.html', source: 'html' }, - { path: '/features.html', source: 'html' }, - { path: '/pricing.html', source: 'html' }, + { path: '/', source: 'html' }, + { path: '/features', source: 'html' }, + { path: '/pricing', source: 'html' }, ]; let config = {