Use this skill when:
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiondart-test-fundamentalsExecute the skills CLI command in your project's root directory to begin installation:
Fetches dart-test-fundamentals from kevmoo/dash_skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate dart-test-fundamentals. Access via /dart-test-fundamentals in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
1
total installs
1
this week
120
GitHub stars
0
upvotes
Run in your terminal
1
installs
1
this week
120
stars
Use this skill when:
group.dart_test.yaml.test and group)test: The fundamental unit of testing.
test('description', () {
// assertions
});
group: Used to organize tests into logical blocks.
setUp and tearDown calls.PascalCase for groups that correspond to a class name
(e.g., group('MyClient', ...)).group call if it's the only one.Naming Tests:
'throws StateError' or 'adds API key to URL').Named Parameters Placement:
test and group calls, place named parameters (e.g., testOn,
timeout, skip) immediately after the description string, before the
callback closure. This improves readability by keeping the test logic last.
test('description', testOn: 'vm', () {
// assertions
});
setUp, tearDown)setUp: Runs before every test in the current group (and nested
groups).tearDown: Runs after every test in the current group.setUpAll: Runs once before any test in the group.tearDownAll: Runs once after all tests in the group.Best Practice:
setUp for resetting state to ensure test isolation.dart_test.yaml)The dart_test.yaml file configures the test runner. Common configurations
include:
Define where tests run (vm, chrome, node).
platforms:
- vm
- chrome
Categorize tests to run specific subsets.
tags:
integration:
timeout: 2x
Usage in code:
(['integration'])
import 'package:test/test.dart';
Running tags:
dart test --tags integration
Set default timeouts for tests.
timeouts:
2x # Double the default timeout
_test.dart to be picked up by the test runner.test/ directory.dart test: Run all tests.dart test test/path/to/file_test.dart: Run a specific file.dart test --name "substring": Run tests matching a description.dart-test-fundamentals is the core skill for structuring and configuring
tests. For writing assertions within those tests, refer to:
dart-matcher-best-practices:
Use this if the project sticks with the traditional
package:matcher (expect calls).dart-checks-migration: Use this
if the project is migrating to the modern package:checks (check calls).Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
kevmoo/dash_skills
cexll/myclaude
github/awesome-copilot
github/awesome-copilot
bbeierle12/skill-mcp-claude
josiahsiegel/claude-plugin-marketplace
We added dart-test-fundamentals from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
dart-test-fundamentals has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in dart-test-fundamentals — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
dart-test-fundamentals reduced setup friction for our internal harness; good balance of opinion and flexibility.
Solid pick for teams standardizing on skills: dart-test-fundamentals is focused, and the summary matches what you get after install.
dart-test-fundamentals fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
dart-test-fundamentals is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
We added dart-test-fundamentals from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Keeps context tight: dart-test-fundamentals is the kind of skill you can hand to a new teammate without a long onboarding doc.
dart-test-fundamentals has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 38