-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add Yedidya Rashi profile (#220) * chore: remove idea folder (#236) * updating readme: custom image (#239) * test: add e2e infra with playwright and a sample test (#235) * test: add e2e infra with playwright and a sample test * test: add github action for e2e test * test: add config for framework spin-up * Yedidyar/issue167 (#240) * feat: add Yedidya Rashi profile (#220) * fix: randomShuffle isn't working correctly (#167) * fix(Description): wrap descriptionHeight with useEffect (#243) see more about the issue: https://stackoverflow.com/questions/62336340/cannot-update-a-component-while-rendering-a-different-component-warning * There is no background for the role of Former admin label Fixes #241 * Test (#238) * inital commit * revert change Co-authored-by: noa <[email protected]> Co-authored-by: yedidya rashi <[email protected]> Co-authored-by: Omri Bar-Zik <[email protected]> Co-authored-by: shir22 <[email protected]> Co-authored-by: Liran Tal <[email protected]> Co-authored-by: Inbar Danieli <[email protected]> Co-authored-by: noa <[email protected]>
- Loading branch information
1 parent
8ae23ec
commit 84d56ac
Showing
17 changed files
with
104 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: "Tests: E2E" | ||
on: [pull_request] | ||
jobs: | ||
tests_e2e: | ||
name: Run end-to-end tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- name: install dependencies | ||
run: npm ci | ||
- name: install playwright browsers | ||
run: npx playwright install --with-deps | ||
- name: npm run test:e2e | ||
run: npm run test:e2e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { test, expect } from '@playwright/test' | ||
|
||
test('page should have title of "קהילת Pull Request"', async ({page}) => { | ||
await page.goto('http://localhost:3000/') | ||
const title = await page.title() | ||
expect(title).toBe('קהילת Pull Request') | ||
}); | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { PlaywrightTestConfig } from "@playwright/test"; | ||
|
||
const config: PlaywrightTestConfig = { | ||
webServer: { | ||
command: "npm run start", | ||
url: "http://localhost:3000", | ||
} | ||
}; | ||
|
||
export default config; |