Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions .github/workflows/sdk-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions clients/static-site/tests/e2e.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Loading