Skip to content

Commit

Permalink
Updates SDK for compatibility in serverless environments
Browse files Browse the repository at this point in the history
  • Loading branch information
Titou325 committed Jun 5, 2024
1 parent 0a7e6e2 commit efed0e4
Show file tree
Hide file tree
Showing 10 changed files with 3,381 additions and 197 deletions.
18 changes: 18 additions & 0 deletions browser.vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import "dotenv/config";
import { defineConfig } from "vitest/config";
import tsconfigPaths from "vite-tsconfig-paths";

export default defineConfig({
plugins: [tsconfigPaths()],
test: {
browser: {
enabled: true,
headless: true,
name: "chrome",
},
include: ["packages/**/*.browsertest.ts"],
},
define: {
__FILEFORGE_API_KEY__: process.env.FILEFORGE_API_KEY,
},
});
Loading

0 comments on commit efed0e4

Please sign in to comment.