Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

Commit 9955baf

Browse files
committed
feat: 백엔드 관련 스크립트 추가
1 parent 3fe0f81 commit 9955baf

File tree

5 files changed

+29
-0
lines changed

5 files changed

+29
-0
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Set default behavior for all text files
2+
* text=auto
3+
4+
# Enforce Unix-style (LF) line endings for shell scripts
5+
*.sh eol=lf

tests/community/news.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { expect, test } from '@playwright/test';
2+
3+
test('has title', async ({ page }) => {
4+
await page.goto('/community/news');
5+
await expect(page).toHaveTitle(/ /);
6+
});

tests/community/notice.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { expect, test } from '@playwright/test';
2+
3+
test('has title', async ({ page }) => {
4+
await page.goto('/community/notice');
5+
await expect(page).toHaveTitle(//);
6+
});

tests/community/seminar.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { expect, test } from '@playwright/test';
2+
3+
test('has title', async ({ page }) => {
4+
await page.goto('/community/seminar');
5+
await expect(page).toHaveTitle(//);
6+
});

tests/main.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { expect, test } from '@playwright/test';
2+
3+
test('has title', async ({ page }) => {
4+
await page.goto('/');
5+
await expect(page).toHaveTitle(/ /);
6+
});

0 commit comments

Comments
 (0)