Compare commits
2 Commits
8973e616d1
...
b14819af3f
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b14819af3f | ||
![]() |
7824ea3823 |
@@ -50,4 +50,11 @@ test.describe('Vue App', () => {
|
||||
|
||||
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",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
|
@@ -1,7 +1,7 @@
|
||||
<script setup lang="ts"></script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div class="app-layout">
|
||||
<div>AppLayout</div>
|
||||
<router-view />
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user