feat: publish HoloLake model-native living system source
This commit is contained in:
parent
6ad10edde1
commit
c395dd3a99
2467 changed files with 615073 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
import { test, expect } from '@playwright/test'
|
||||
|
||||
test.describe('Move vault cache smoke tests', () => {
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto('/')
|
||||
await page.waitForLoadState('networkidle')
|
||||
})
|
||||
|
||||
test('app loads with note list populated (cache works)', async ({ page }) => {
|
||||
// The sidebar note list container should be present — this proves the vault
|
||||
// scan (and cache, if present) is functioning correctly after moving cache
|
||||
// out of the vault directory.
|
||||
const noteListContainer = page.locator(
|
||||
'[data-testid="note-list-container"]',
|
||||
)
|
||||
await expect(noteListContainer).toBeVisible({ timeout: 5_000 })
|
||||
})
|
||||
|
||||
test('no .laputa-cache.json text visible in the sidebar', async ({
|
||||
page,
|
||||
}) => {
|
||||
// The cache file should NOT appear anywhere in the sidebar.
|
||||
// Previously it lived inside the vault and could show up; now it's external.
|
||||
const sidebar = page.locator(
|
||||
'[data-testid="note-list-container"]',
|
||||
)
|
||||
await expect(sidebar).toBeVisible({ timeout: 5_000 })
|
||||
|
||||
// No element in the sidebar should contain cache-related text
|
||||
const cacheText = sidebar.locator('text=.laputa-cache')
|
||||
await expect(cacheText).toHaveCount(0)
|
||||
})
|
||||
})
|
||||
Loading…
Reference in a new issue