We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91ec269 commit cec96f9Copy full SHA for cec96f9
tests/index.test.ts
@@ -89,7 +89,7 @@ describe('e2e', () => {
89
continue;
90
}
91
const fileTools = await import(`../src/tools/${file}`);
92
- for (const maybeTool of Object.values(fileTools)) {
+ for (const maybeTool of Object.values<object>(fileTools)) {
93
if ('name' in maybeTool) {
94
definedNames.push(maybeTool.name);
95
0 commit comments