* chore: update eslint ignore patterns * Add CI linter and test * remove app arch and start a conversation test case --------- Co-authored-by: Hien To <tominhhien97@gmail.com>
11 lines
206 B
TypeScript
11 lines
206 B
TypeScript
import { PlaywrightTestConfig } from "@playwright/test";
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: "./tests",
|
|
testIgnore: "./core/**",
|
|
retries: 0,
|
|
timeout: 120000,
|
|
};
|
|
|
|
export default config;
|