Compare commits
3 Commits
8973e616d1
...
951ea8be48
Author | SHA1 | Date | |
---|---|---|---|
![]() |
951ea8be48 | ||
![]() |
6266fb4511 | ||
![]() |
28adc12ac1 |
@@ -50,4 +50,11 @@ test.describe('Vue App', () => {
|
|||||||
|
|
||||||
await expect(button).toHaveText('Name from API is: Unknown')
|
await expect(button).toHaveText('Name from API is: Unknown')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('app-layout is present', async ({ page }) => {
|
||||||
|
await page.goto('/')
|
||||||
|
const appLayout = page.locator('.app-layout')
|
||||||
|
await expect(appLayout).toBeVisible()
|
||||||
|
await expect(appLayout).toContainText('AppLayout')
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"packageManager": "pnpm@10.15.1",
|
|
||||||
"name": "vue-ts-example-2025",
|
"name": "vue-ts-example-2025",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
9329
pnpm-lock.yaml
generated
9329
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
|||||||
<script setup lang="ts"></script>
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="app-layout">
|
||||||
<div>AppLayout</div>
|
<div>AppLayout</div>
|
||||||
<router-view />
|
<router-view />
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user