Skip to content

Commit ed2f3fa

Browse files
committed
fix: fix action
1 parent ac7e919 commit ed2f3fa

13 files changed

Lines changed: 3 additions & 669 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 0 additions & 65 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,4 @@ typings/
6161
.env
6262

6363
# next.js build output
64-
.next
65-
66-
# Playwright report
67-
playwright-report
68-
69-
# Test results
70-
test-results
64+
.next

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,14 @@ This repository contains end-to-end tests for the [console-table-printer](https:
1919
- **Type Checking**: Ensure that exported types are correctly defined and usable
2020
- **TypeScript Integration**: Test both libraries working together in a TypeScript environment
2121

22-
### Website Tests (Playwright)
23-
24-
- Tests for the [console-table-printer website](https://console-table.netlify.app/)
25-
- Verifies homepage content, navigation, and documentation pages
26-
2722
## Running Tests
2823

2924
```bash
3025
# Install dependencies
3126
yarn
3227

33-
# Run JavaScript and TypeScript unit tests
28+
# Run unit tests
3429
yarn test
35-
36-
# Run website E2E tests
37-
yarn test:e2e
38-
39-
# Run all tests
40-
yarn test:all
4130
```
4231

4332
## Test Structure

package.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"test": "jest",
8-
"test:unit": "jest",
9-
"test:e2e": "playwright test",
10-
"test:all": "yarn test:unit && yarn test:e2e"
7+
"test": "jest"
118
},
129
"repository": {
1310
"type": "git",
@@ -27,9 +24,7 @@
2724
"simple-wcswidth": "^1.1.2"
2825
},
2926
"devDependencies": {
30-
"@playwright/test": "^1.53.1",
3127
"@types/jest": "^30.0.0",
32-
"playwright": "^1.53.1",
3328
"ts-jest": "^29.4.0",
3429
"typescript": "^5.8.3"
3530
}

playwright-report/index.html

Lines changed: 0 additions & 81 deletions
This file was deleted.

playwright.config.js

Lines changed: 0 additions & 41 deletions
This file was deleted.

test-results/.last-run.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

tests/check_cli_page.js

Lines changed: 0 additions & 48 deletions
This file was deleted.

tests/website/direct_url_access.test.js

Lines changed: 0 additions & 106 deletions
This file was deleted.

0 commit comments

Comments
 (0)