Skip to content

Commit

Permalink
build: calculate repo metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmartDOTin committed Feb 21, 2025
1 parent b9ad1f7 commit ea01350
Show file tree
Hide file tree
Showing 56 changed files with 197 additions and 53 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/repo-metrics.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Get Repo Metrics
# on: workflow_dispatch
on:
push:
branches:
- build/repo-metrics
jobs:
Code-Coverage-Report:
runs-on: ubuntu-latest
steps:
- name: Check out the repository to the runner
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Code Coverage Report
run: yarn test:coverage
- name: Print Coverage Report
run: |
echo "Coverage Report"
cat coverage/coverage-final.json
Mean-Time-To-Merge-Report:
runs-on: ubuntu-latest
steps:
- name: Get Merged PRs from the last two weeks
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OWNER: ${{ github.repository_owner }}
REPO: ${{ github.event.repository.name }}
run: |
TWO_WEEKS_AGO=$(date -d '2 weeks ago' +'%Y-%m-%d')
gh api graphql -f query='
query($owner: String!, $repo: String!) {
repository(owner: $owner, name: $repo) {
pullRequests(
first: 100,
states: [MERGED],
orderBy: {field: UPDATED_AT, direction: DESC}
filterBy: {since: "$TWO_WEEKS_AGO"}
) {
nodes {
createdAt
mergedAt
}
}
}
}' \
-f owner=$OWNER \
-f repo=$REPO > prs.json
- name: Calculate metrics
run: |
jq '
.data.repository.pullRequests.nodes |
map(
. + {
mergeTimeHours: (
((.mergedAt | fromdateiso8601) - (.createdAt | fromdateiso8601)) / 3600
)
}
) |
{
total_prs: length,
average_hours: (map(.mergeTimeHours) | add / length | round),
} |
"PR Metrics Summary:
Total PRs: \(.total_prs)
Average Time to Merge: \(.average_hours) hours
' prs.json > metrics.txt
- name: Print Mean Time To Merge Report
run: |
echo "Mean Time To Merge Report"
cat metrics.txt
2 changes: 1 addition & 1 deletion jest.config.global.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
globals: {
jsdom: true,
},
coverageReporters: ['json'],
coverageReporters: ['json-summary'],
moduleNameMapper: {
uuid: require.resolve('uuid'),
...pathsToModuleNameMapper(compilerOptions.paths, { prefix: '<rootDir>/../../' }),
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"start:storybook": "nx storybook element-storybook",
"test": "nx run-many --target=test --all",
"test:affected": "nx affected --target=test",
"test:coverage": "nx run-many --target=test --all --parallel=3 --runInBand --coverage --no-cache && node ./scripts/merge-coverage.js",
"version:affected": "nx affected --target=version --parallel=1",
"version:affected:canary": "nx affected --target=version --parallel=1 --verbose --preid=alpha --releaseAs=prerelease ${*}",
"version:dry-run": "nx affected --target version --dryRun --parallel=1 --verbose"
Expand Down
2 changes: 1 addition & 1 deletion packages/accordion/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/alert/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/authorize/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/autocomplete/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/avatar/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/backdrop/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/badge/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/block-ui/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/breadcrumbs/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/button/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/card/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/checkbox/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/chip/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/controlled-form/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/datepicker/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/design-tokens/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/dialog/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/disclaimer/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/divider/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/empty-state/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/event-tracker/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/favorites/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/feedback/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/file-selector/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/form-utils/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/icon/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/layout/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/link/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/list/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/menu/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/modal/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/nx-generator/jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ export default {
],
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../coverage/packages/nx-generator',
coverageDirectory: '../../coverage/nx-generator',
};
2 changes: 1 addition & 1 deletion packages/page-header/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/pagination/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/paper/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/popover/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/popper/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/progress/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/snackbar/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/spaces/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/stepper/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/table/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/tabs/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/textfield/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["jest", "node", "@testing-library/jest-dom"],
"allowJs": true
},
"include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
"include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
}
Loading

0 comments on commit ea01350

Please sign in to comment.