Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jest custom matchers 🦨 #2046

Draft
wants to merge 31 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
247560b
scaffold jest matchers
TheSonOfThomp Oct 26, 2023
872b7cd
creates `createMatcher` script
TheSonOfThomp Oct 26, 2023
b2159ad
creates `toBeLabelled` matcher
TheSonOfThomp Oct 26, 2023
34f991e
updates creator function
TheSonOfThomp Oct 26, 2023
ad0b511
Update createNewMatcher.ts
TheSonOfThomp Oct 26, 2023
18e4145
creates `toSpreadRest`
TheSonOfThomp Oct 26, 2023
7e6a1aa
Update package.json
TheSonOfThomp Oct 26, 2023
259e70a
updates dependency validation checker
TheSonOfThomp Oct 26, 2023
33692c7
Create rude-scissors-deliver.md
TheSonOfThomp Oct 26, 2023
ecd21b0
Updates directory checking logic
TheSonOfThomp Oct 26, 2023
ea79e95
fix builds
TheSonOfThomp Oct 27, 2023
488d168
lint fix
TheSonOfThomp Oct 27, 2023
881ee24
fix dependencies
TheSonOfThomp Oct 30, 2023
73241ed
Update yarn.lock
TheSonOfThomp Oct 30, 2023
007a08e
Update toBeLabelled.spec.ts
TheSonOfThomp Oct 30, 2023
fa142c1
Update config.ts
TheSonOfThomp Oct 30, 2023
069d681
Update validateListedDevDependencies.ts
TheSonOfThomp Oct 30, 2023
1bc1c50
Merge branch 'main' into adam/jest-matchers
TheSonOfThomp Oct 31, 2023
39c7ab5
Merge branch 'main' into adam/fix-validation
TheSonOfThomp Oct 31, 2023
7835727
Update config.ts
TheSonOfThomp Oct 31, 2023
a051697
lint fix
TheSonOfThomp Oct 31, 2023
138d652
Merge branch 'main' into adam/fix-validation
bruugey Oct 31, 2023
a1cc0e6
Merge branch 'main' into adam/fix-validation
bruugey Oct 31, 2023
7de005b
Merge branch 'main' into adam/jest-matchers
TheSonOfThomp Nov 1, 2023
0be084e
Merge branch 'adam/fix-validation' into adam/jest-matchers
TheSonOfThomp Nov 1, 2023
2d05099
Merge branch 'main' into adam/jest-matchers
TheSonOfThomp Nov 27, 2023
2b18932
Merge branch 'main' into adam/jest-matchers
TheSonOfThomp Jan 10, 2024
8f1fac0
Merge branch 'main' into adam/jest-matchers
TheSonOfThomp Feb 15, 2024
2e2bfae
Update toSpreadRest.tsx
TheSonOfThomp Feb 15, 2024
cf8994c
Adds toSpreadRest to Combobox & DatePicker
TheSonOfThomp Feb 15, 2024
7917785
adds toBeLabelled to text input
TheSonOfThomp Feb 15, 2024
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update validateListedDevDependencies.ts
  • Loading branch information
TheSonOfThomp authored Oct 30, 2023
commit 069d681671311b91912ddfcc4d2b672216b7603e
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export function validateListedDevDependencies(
): Array<string> {
const { verbose } = options ?? { verbose: false };
const {
// devDependencies: importedPackagesInTestFile,
dependencies: importedPackagesInSourceFile,
} = sortDependenciesByUsage(importedPackages, pkgName);

Expand Down
Loading