Files
tuono/e2e/e2e-test-setup.js
T
2025-02-12 08:57:18 +01:00

9 lines
275 B
JavaScript

import { execSync } from 'child_process'
import path from 'path'
const __dirname = import.meta.dirname
const rootDir = path.join(__dirname, '..')
execSync('cargo build --config opt-level=0', { cwd: rootDir, stdio: 'inherit' })
execSync('turbo build', { stdio: 'inherit' })