Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DEMO_BASE_URL = 'https://hypersequent.github.io/bistro/'
DEMO_BASE_URL='https://hypersequent.github.io/bistro/'
29 changes: 0 additions & 29 deletions .github/PULL_REQUEST_TEMPLATE.MD
Original file line number Diff line number Diff line change
@@ -1,31 +1,2 @@
# Description

Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.

Closes: #(issue)

## Type of change

- [ ] Bug fix (non-breaking change which fixes an issue).
- [ ] New feature (non-breaking change which adds functionality).
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected).
- [ ] This change requires a documentation update.

## How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration and a screenshot of your full execution.

- [ ] Test A
- [ ] Test B

## Checklist

- [ ] Title of PR is according to convention.
- [ ] My code follows the style guidelines of this project (**prettyfy**).
- [ ] I have performed a self-review of my own code.
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation.
- [ ] My changes generate no new warnings.
- [ ] I have added tests that prove my fix is effective or that my feature works.
- [ ] New and existing tests pass locally with my changes.
- [ ] Any dependent changes have been merged.
14 changes: 2 additions & 12 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,28 +33,18 @@ jobs:
- name: Run Playwright tests
run: npx playwright test

- name: Generate Allure Report
if: always()
run: npm run allure-report

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-test-results
path: test-results/

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: junit-results
path: junit-results/

- uses: actions/upload-artifact@v3
if: always()
with:
name: allure-test-results
path: allure-report/

- name: Publish JUnit Report
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ vite.config.ts.timestamp-*
allure-results/
junit-results/
playwright-report/
.qaspherecli
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This repository contains end-to-end tests for [Bistro Delivery](https://github.c
1. Clone the repository:

```bash
git clone https://github.com/Hypersequent/bistro-e2e.git
git clone git@github.com:Hypersequent/bistro-e2e.git
cd bistro-e2e
```

Expand Down
Loading