This repository was archived by the owner on Jan 2, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +29
-0
lines changed
Expand file tree Collapse file tree 5 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ } ) ;
Original file line number Diff line number Diff line change 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+ } ) ;
Original file line number Diff line number Diff line change 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+ } ) ;
Original file line number Diff line number Diff line change 1+ import { expect , test } from '@playwright/test' ;
2+
3+ test ( 'has title' , async ( { page } ) => {
4+ await page . goto ( '/' ) ;
5+ await expect ( page ) . toHaveTitle ( / 서 울 대 학 교 컴 퓨 터 공 학 부 / ) ;
6+ } ) ;
You can’t perform that action at this time.
0 commit comments