修改mobile端token存储键名为'mobile_token'以区分不同客户端 添加Playwright测试套件用于知识库管理功能测试 更新.gitignore忽略node_modules和test-results目录
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
// playwright.config.js
|
|
const { defineConfig } = require('@playwright/test');
|
|
|
|
module.exports = defineConfig({
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: {
|
|
browserName: 'chromium',
|
|
},
|
|
},
|
|
],
|
|
}); |