Rocky_Mountain_Vending/.pnpm-store/v10/files/20/c352e906ceb78bd455f0478a15b88252b1519cc568c0aa3427fdf4928108a4469e4dbbfff13a7b00df99fb3f4bf41b510390e9878228edfecc8915b2e70a91
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

15 lines
477 B
Text

import Hook from '../../index.js'
import { Report } from 'c8/index.js'
import path from 'path'
import { fileURLToPath } from 'url'
import { strictEqual } from 'assert'
const c8Dir = path.join(path.dirname(fileURLToPath(import.meta.url)), '..', '..', 'node_modules', 'c8')
Hook(['c8'], { internals: true }, (exports, name, baseDir) => {
strictEqual(name, path.join('c8', 'index.js'))
strictEqual(baseDir, c8Dir)
exports.Report = () => 42
})
strictEqual(Report({}), 42)