Initial deployment setup
Deploy staging / deploy (push) Failing after 6s

This commit is contained in:
root
2026-08-31 16:45:24 +09:00
commit 33453ecc55
3475 changed files with 850363 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { test } from '@playwright/test';
import createChannel from './scenarios/create-channel.spec';
import createFeedbackWithImage from './scenarios/create-feedback-with-image.spec';
import createFeedback from './scenarios/create-feedback.spec';
import createIssue from './scenarios/create-issue.spec';
import createMultipleFeedbacks from './scenarios/create-multiple-feedbacks.spec';
import createProject from './scenarios/create-project.spec';
import searchFeedback from './scenarios/search-feedback.spec';
test.describe('test suites', () => {
createProject();
createChannel();
createFeedback();
createFeedbackWithImage();
createMultipleFeedbacks();
createIssue();
searchFeedback();
});