Rocky_Mountain_Vending/.pnpm-store/v10/files/79/f9e4fbf1eb61736c52ce4f7334c3afd3d504812632e82c368a741340fed3181938abb2bcc2b9faca52d5bb9744686a240c36a286f6ce37aecdfa1e9e9fed5d
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
373 B
Text

import { strictEqual } from 'assert'
// We dynamically import a specific file that imports the
// native module for this platform and architecture.
//
// This way we know the file exists and the native module can
// be loaded.
const lib = await import(`../fixtures/native-modules/${process.platform}-${process.arch}.js`)
strictEqual(typeof lib.default.crc32, 'function')