aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/image/test/test-utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/image/test/test-utils.js')
-rw-r--r--packages/integrations/image/test/test-utils.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/integrations/image/test/test-utils.js b/packages/integrations/image/test/test-utils.js
index e6c22e0ab..122e90132 100644
--- a/packages/integrations/image/test/test-utils.js
+++ b/packages/integrations/image/test/test-utils.js
@@ -1,8 +1,7 @@
import { loadFixture as baseLoadFixture } from '../../../astro/test/test-utils.js';
export function loadFixture(inlineConfig) {
- if (!inlineConfig || !inlineConfig.root)
- throw new Error("Must provide { root: './fixtures/...' }");
+ if (!inlineConfig?.root) throw new Error("Must provide { root: './fixtures/...' }");
// resolve the relative root (i.e. "./fixtures/tailwindcss") to a full filepath
// without this, the main `loadFixture` helper will resolve relative to `packages/astro/test`