You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
❯ bun test
bun test v1.1.12 (43f0913c)
convex\entities\users.test.ts:
876 | }
877 | function getModuleCache() {
878 | return global.Convex.modules;
879 | }
880 | function moduleCache(specifiedModules) {
881 | const modules = specifiedModules ?? import.meta.glob("../../../convex/**/*.*s");
^
TypeError: import.meta.glob is not a function. (In 'import.meta.glob("../../../convex/**/*.*s")', 'import.meta.glob' is undefined)
The text was updated successfully, but these errors were encountered:
Indeed. I think we're OK with this for now, but if you can get another runner working (and supporting everything vitest currently supports), we'd look at a PR.
Due to the use of Vitest-specific APIs, convex-test can't be used with any test runner other than Vitest, such as
bun test
:The text was updated successfully, but these errors were encountered: