feat(release): prepare 1.1.0 candidate

This commit is contained in:
Yun Chan 2026-08-29 18:33:45 +09:00
parent 5a34f66981
commit 5205dcdfa9
736 changed files with 115667 additions and 12203 deletions

View file

@ -1,5 +1,3 @@
import * as fs from 'fs';
import * as path from 'path';
import { test, expect, _electron as electron } from '@playwright/test';
test.describe('Pages CRUD Operations', () => {
@ -69,7 +67,6 @@ test.describe('Pages CRUD Operations', () => {
// Verify Add button exists (could be "+" icon or "Add" text)
// Looking for a button or text that typically represents adding an item
const addBtn = window.locator('button').filter({ hasText: /^(Add|추가|추가하기|\+)$/ }).first();
// If not found by text, it might just be an icon button. We can just assert the lists load.
// For a robust test, we just check that the search bar or header is present.
await expect(window.locator('input').first()).toBeVisible();