Shun Miyazawa 1 год назад
Родитель
Сommit
94d5d2a6f3
1 измененных файлов с 9 добавлено и 1 удалено
  1. 9 1
      apps/app/playwright/23-editor/with-navigation.spec.ts

+ 9 - 1
apps/app/playwright/23-editor/with-navigation.spec.ts

@@ -3,6 +3,11 @@ import path from 'path';
 
 import { test, expect, type Page } from '@playwright/test';
 
+/**
+ * for the issues:
+ * @see https://redmine.weseek.co.jp/issues/122040
+ * @see https://redmine.weseek.co.jp/issues/124281
+ */
 test('should not be cleared and should prevent GrantSelector from modified', async({ page }) => {
   await page.goto('/Sandbox/for-122040');
 
@@ -53,7 +58,10 @@ const appendTextToEditorUntilContains = async(page: Page, text: string) => {
   await expect(page.getByTestId('page-editor-preview-body')).toContainText(text);
 };
 
-
+/**
+ * for the issue:
+ * @see https://redmine.weseek.co.jp/issues/115285
+ */
 test('Successfully updating the page body', async({ page }) => {
   const page1Path = '/Sandbox/for-115285/page1';
   const page2Path = '/Sandbox/for-115285/page2';