UNPKG

puter-sdk

Version:

The Unofficial Puter SDK library for Puter cloud platform

21 lines (20 loc) 556 B
import { defineConfig } from 'vitest/config'; import path from 'path'; import dotenv from 'dotenv'; export default defineConfig({ plugins: [], resolve: { alias: { '@': path.resolve(__dirname, './src'), '@test': path.resolve(__dirname, './tests'), }, }, test: { include: ['tests/integration/**/*.test.js'], testTimeout: 30000, // Longer timeout for integration tests environmentMatchGlobs: [ ['tests/integration/**', 'node'] // Ensure Node environment ], }, // Specific setup goes here })