Add basic vue app

This commit is contained in:
Joey Yakimowich-Payne 2023-08-09 19:31:10 -06:00
commit 69e7cf3f3b
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1
44 changed files with 3530 additions and 1217 deletions

4
e2e/tsconfig.json Normal file
View file

@ -0,0 +1,4 @@
{
"extends": "@tsconfig/node18/tsconfig.json",
"include": ["./**/*"]
}

8
e2e/vue.spec.ts Normal file
View file

@ -0,0 +1,8 @@
import { test, expect } from '@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!');
})