mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
// No baseUrl here, because we don't need it for contract testing
|
|
baseUrl: null,
|
|
specPattern: "cypress/contract/*.cy.{ts,js}",
|
|
},
|
|
});
|