Skip to content

Commit

Permalink
Tests e2e playwright Embed: Dataviz does not generate error
Browse files Browse the repository at this point in the history
  • Loading branch information
rldhont committed Jul 11, 2024
1 parent 27805de commit 5dd8977
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/end2end/playwright/embed.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// @ts-check
const { test, expect } = require('@playwright/test');
const { gotoMap } = require('./globals')

test.describe('Embed', () => {
test('Dataviz does not generate error', async ({ page }) => {
const url = '/index.php/view/embed/?repository=testsrepository&project=dataviz';
await gotoMap(url, page);
})
})

0 comments on commit 5dd8977

Please sign in to comment.