twd-js 1.8.1 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -13
- package/dist/bundled.es.js +1352 -1352
- package/dist/constants/version.d.ts +1 -1
- package/dist/index.cjs.js +5 -6
- package/dist/index.es.js +5 -6
- package/dist/mock-sw.js +1 -1
- package/dist/ui/ClosedSidebar.d.ts +1 -1
- package/dist/ui/Icons/BaseIcon.d.ts +1 -1
- package/dist/ui/Icons/ChevronDown.d.ts +1 -1
- package/dist/ui/Icons/ChevronRight.d.ts +1 -1
- package/dist/ui/Icons/Loader.d.ts +1 -1
- package/dist/ui/Icons/MockRequestIcon.d.ts +1 -1
- package/dist/ui/Icons/Play.d.ts +1 -1
- package/dist/ui/LogItem.d.ts +1 -1
- package/dist/ui/MockRulesButton.d.ts +1 -1
- package/dist/ui/MockedComponent.d.ts +1 -1
- package/dist/ui/SearchInput.d.ts +1 -1
- package/dist/ui/SkipOnlyName.d.ts +1 -1
- package/dist/ui/TWDSidebar.d.ts +1 -1
- package/dist/ui/TestList.d.ts +1 -1
- package/dist/ui/TestListItem.d.ts +1 -1
- package/dist/ui/utils/styles.d.ts +1 -1
- package/dist/ui.d.ts +1 -1
- package/package.json +18 -6
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# TWD
|
|
1
|
+
# TWD (Test While Developing)
|
|
2
2
|
|
|
3
3
|
[](https://github.com/BRIKEV/twd/actions/workflows/ci.yml)
|
|
4
4
|
[](https://www.npmjs.com/package/twd-js)
|
|
@@ -78,23 +78,23 @@ One package today. The rest when you need it.
|
|
|
78
78
|
|
|
79
79
|
## Examples & showcase
|
|
80
80
|
|
|
81
|
-
- **[twd-shadcn](https://github.com/BRIKEV/twd-shadcn)
|
|
82
|
-
- **[twd-react-router](https://github.com/BRIKEV/twd-react-router)
|
|
83
|
-
- **[twd-tanstack-example](https://github.com/BRIKEV/twd-tanstack-example)
|
|
84
|
-
- **[twd-vue-example](https://github.com/BRIKEV/twd-vue-example)
|
|
85
|
-
- **[twd-angular-example](https://github.com/BRIKEV/twd-angular-example)
|
|
86
|
-
- **[twd-auth0](https://github.com/BRIKEV/twd-auth0)
|
|
81
|
+
- **[twd-shadcn](https://github.com/BRIKEV/twd-shadcn)**: React + shadcn/ui with a [live demo](https://brikev.github.io/twd-shadcn/) you can interact with
|
|
82
|
+
- **[twd-react-router](https://github.com/BRIKEV/twd-react-router)**: React Router (Framework Mode) with `createRoutesStub` and loader mocking
|
|
83
|
+
- **[twd-tanstack-example](https://github.com/BRIKEV/twd-tanstack-example)**: TanStack Router integration
|
|
84
|
+
- **[twd-vue-example](https://github.com/BRIKEV/twd-vue-example)**: Vue 3
|
|
85
|
+
- **[twd-angular-example](https://github.com/BRIKEV/twd-angular-example)**: Angular
|
|
86
|
+
- **[twd-auth0](https://github.com/BRIKEV/twd-auth0)**: Auth0 session mocking
|
|
87
87
|
|
|
88
88
|
→ **[All examples and community content](https://twd.dev/community)**
|
|
89
89
|
|
|
90
90
|
## Documentation
|
|
91
91
|
|
|
92
|
-
- **[Getting Started](https://twd.dev/getting-started)
|
|
93
|
-
- **[Writing Tests](https://twd.dev/writing-tests)
|
|
94
|
-
- **[API Mocking](https://twd.dev/api-mocking)
|
|
95
|
-
- **[AI Integration](https://twd.dev/ai-overview)
|
|
96
|
-
- **[Contract Testing Setup](https://twd.dev/contract-testing-setup)
|
|
97
|
-
- **[API Reference](https://twd.dev/api/)
|
|
92
|
+
- **[Getting Started](https://twd.dev/getting-started)**: Install, set up, write your first test
|
|
93
|
+
- **[Writing Tests](https://twd.dev/writing-tests)**: Selectors, assertions, interactions, navigation
|
|
94
|
+
- **[API Mocking](https://twd.dev/api-mocking)**: Built-in request mocking via service worker
|
|
95
|
+
- **[AI Integration](https://twd.dev/ai-overview)**: Connect Claude Code (or any agent) via twd-relay
|
|
96
|
+
- **[Contract Testing Setup](https://twd.dev/contract-testing-setup)**: Validate mocks against OpenAPI specs in CI
|
|
97
|
+
- **[API Reference](https://twd.dev/api/)**: Test functions, commands, assertions
|
|
98
98
|
|
|
99
99
|
## Contributing
|
|
100
100
|
|