From 3c2035415c79d297bfe6609b0bd518c1f6a31b35 Mon Sep 17 00:00:00 2001 From: Daria Domina Date: Sat, 11 Oct 2025 14:09:42 +0200 Subject: [PATCH] update readme.md --- README.md | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 08e9f47..2885638 100644 --- a/README.md +++ b/README.md @@ -76,17 +76,16 @@ This repository demonstrates a pragmatic setup for automated UI tests using Play This section describes the project layout -- .github/workflows/ — CI workflows -- node_modules/ -- playwright-report/ -- test-results/ -- tests/ — Test files (e.g., *.spec.ts) -- .gitignore -- package.json -- playwright.config.ts — Playwright test runner configuration -- README.md -- tsconfig.json -- yarn.lock +``` +├── .github/workflows/ # CI/CD workflows +├── tests/ # Test files (*.spec.ts) +├── .gitignore +├── package.json +├── playwright.config.ts +├── README.md +├── tsconfig.json +└── yarn.lock +``` ---