mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-22 20:04:59 +00:00
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
// Using Playwright (recommended)
|
|
import { expect, test } from "@playwright/test";
|
|
|
|
// playwright.config.js
|
|
export default {
|
|
use: {
|
|
headless: true,
|
|
// Required for SharedArrayBuffer
|
|
launchOptions: {
|
|
args: ["--cross-origin-isolated"],
|
|
},
|
|
},
|
|
};
|