Rocky_Mountain_Vending/.pnpm-store/v10/files/8b/70da27df16f9073b7add9b8541694d5273359ca77c8db3e22e2da21b23d67ac49b0ff980e030185f4a5e536c6a63ee66acdff522ae86edfb3ccd9bc7afd0c8
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

9 lines
182 B
Text

var test = require('tape');
var resolve = require('../');
test('nonstring', function (t) {
t.plan(1);
resolve(555, function (err, res, pkg) {
t.ok(err);
});
});