1 Star 0 Fork 0

HugoYuen/tagspaces

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
playwright.unit.js 592 Bytes
一键复制 编辑 原始数据 按行查看 历史
const { defineConfig } = require('@playwright/test');
global.isUnitTest = true;
module.exports = defineConfig({
testDir: './tests/unit',
// Use the grep option to filter tests by title and file extension
// grep: /.*\.pw\.js$/,
testMatch: /.*\.test\.js/,
// Set the timeout for each test
timeout: 30000,
// (3 hours) Maximum time in milliseconds the whole test suite can run. Useful on CI to prevent broken setup from running too long and wasting resources.
globalTimeout: process.env.CI ? 3 * 60 * 60 * 1000 : undefined,
reporter: process.env.CI ? 'github' : 'list',
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/hugoyuen/tagspaces.git
[email protected]:hugoyuen/tagspaces.git
hugoyuen
tagspaces
tagspaces
develop

搜索帮助