Rocky_Mountain_Vending/.pnpm-store/v10/files/c1/99dfa9db9914217ae72175d5a280879a50cb0c07c50f1a53a1a56fb7ccd928bc96dff9e6cfeed669a30ab4176235fd4889a99ecc28446655e22723b18ca9b4
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
356 B
Text

/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import process from 'process';
// NODE_ENV is set to test by mocha-setup.js and the smokehouse CLI runner
// CI as a catchall for everything we do in GitHub Actions
const isUnderTest = !!process.env.CI || process.env.NODE_ENV === 'test';
export {
isUnderTest,
};