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>
15 lines
356 B
Text
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,
|
|
};
|