Skip to content

Feature/GitHub actions to run Jest tests #401

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 17, 2025
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
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Tests

on:
pull_request:
branches:
- dev

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '23.4'

- name: Install dependencies
run: npm install

- name: Run Jest tests
run: npm test
21 changes: 21 additions & 0 deletions src/components/UI/Error/__snapshots__/Error.test.js.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Error Component should render with default props 1`] = `
<div>
<div
class="ant-result ant-result-"
>
<div
class="ant-result-icon"
/>
<div
class="ant-result-title"
/>
<div
class="ant-result-subtitle"
>
Sorry, something went wrong![object Object]
</div>
</div>
</div>
`;
Loading