Rocky_Mountain_Vending/.pnpm-store/v10/files/98/27748e48f8bae408bca00197ac679b545d443b30406e6b0f0923364249c42dc26f985c1c3cfb8f109cc20f94b39838f1804f72641d5b6a1e28b2ebe20b8586
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

10 lines
334 B
Text

import { strictEqual } from 'assert'
import * as foo from './foo.mjs'
import { dirname, join } from 'path'
import { fileURLToPath } from 'url'
const fooPath = join(dirname(fileURLToPath(import.meta.url)), 'foo.mjs')
strictEqual(typeof foo.foo, 'function')
strictEqual(global.hooked.length, 1)
strictEqual(global.hooked[0], fooPath)