Skip to content

Commit 293848d

Browse files
committed
Squash commits
1 parent e7b3481 commit 293848d

File tree

194 files changed

+3769
-23144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+3769
-23144
lines changed

.cursor/rules/cursor-rule.mdc

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

.cursor/rules/testing/unit-tests-generic.mdc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ USE WHEN writing unit tests for components in template packages
77

88
# 🧪 Generic Component Test Rules
99

10+
# CRITICAL: AI Attribution Requirements
11+
* **IMPORTANT** All individual test methods generated or modified by Cursor MUST include an AI attribution comment directly above the test stating the following:
12+
"DO NOT REMOVE THIS COMMENT! This test was generated by Cursor". The comment should go on the test method and not the test class. Failure to add an AI Attribution Comment will be considered a failure of test generation.
13+
* The AI attribution comment MUST include a comment declaring the LLM model that was used in writing the test on its own line.
14+
15+
*Sample AI Attribution Comment*
16+
```
17+
/*
18+
* DO NOT REMOVE THIS COMMENT! This test was generated by Cursor
19+
* This test was generated with the following model: Claude 3.5 Sonnet
20+
*/
21+
test('renders component correctly', () => {
22+
// test implementation
23+
})
24+
```
25+
1026
## Structure & Best Practices
1127
- Use `describe` blocks to group tests, `test` for individual cases
1228
- Use `beforeEach` for setup, clear mocks after each test

.github/workflows/e2e-pr.yml

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

.github/workflows/e2e.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -411,25 +411,3 @@ jobs:
411411
}
412412
env:
413413
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
414-
415-
test-extra-features:
416-
runs-on: ubuntu-latest
417-
steps:
418-
- name: Checkout
419-
uses: actions/checkout@v4
420-
- name: Setup Node.js
421-
uses: actions/setup-node@v4
422-
with:
423-
node-version: 22
424-
cache: npm
425-
- name: Install Monorepo Dependencies
426-
run: node ./scripts/gtime.js monorepo_install npm ci
427-
- name: Install Playwright Browsers
428-
run: npx playwright install --with-deps
429-
- name: Set PWA Kit E2E Test User
430-
run: export PWA_E2E_USER_EMAIL=e2e.pwa.kit@gmail.com PWA_E2E_USER_PASSWORD=hpv_pek-JZK_xkz0wzf
431-
- name: Run extra features tests
432-
env:
433-
PWA_E2E_USER_EMAIL: e2e.pwa.kit@gmail.com
434-
PWA_E2E_USER_PASSWORD: hpv_pek-JZK_xkz0wzf
435-
run: npm run test:e2e:extra_features

0 commit comments

Comments
 (0)