kindergarten_java/lesingle-edu-reading-platform-frontend/tests/e2e/school/10-notifications.spec.ts

25 lines
894 B
TypeScript
Raw Normal View History

/**
* E2E -
*
* "通知管理"
*
* -
* -
* -
* -
*/
import { test, expect } from '@playwright/test';
import { loginAsSchool } from './helpers';
test.describe('学校端通知管理功能', () => {
test.beforeEach(async ({ page }) => {
await loginAsSchool(page);
});
test.skip('通知管理功能 - 已禁用', async () => {
// 学校端不存在通知管理功能,跳过所有测试
test.skip(true, '学校端不存在通知管理菜单项');
});
});