Files
fst-frontend/e2e/vue.spec.js
2022-11-27 21:20:41 +01:00

9 lines
283 B
JavaScript

const { test, expect } = require('@playwright/test');
// See here how to get started:
// https://playwright.dev/docs/intro
test('visits the app root url', async ({ page }) => {
await page.goto('/');
await expect(page.locator('div.greetings > h1')).toHaveText('You did it!');
})