Skip to content
Open
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
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/issue_template.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
name: "GitAuto Issue"
description: "For small bugs, features, refactors, and tests to be handled by Sweep, an AI-powered junior developer."
body: yo
- type: textarea
id: description
attributes:
label: Description
description: Provide a clear and concise description of the test issue.
- type: textarea
id: steps
attributes:
label: Steps to Test
description: List the steps to follow for running the test components.
- type: dropdown
id: importance
attributes:
label: Importance
description: Select the importance level of the test.
options:
- Low
- Medium
- High
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,19 @@
# Issue Reporting Guidelines
Please follow the issue template located in `.github/ISSUE_TEMPLATE/issue_template.md` for reporting issues. This ensures that all necessary information is provided upfront, making it easier for contributors to understand and address the issue effectively.
## Test Issue Verification

This section explains the purpose of the test issue and how to run the tests.

### Purpose

The test issue is created to verify the functionality of the `JoinModal.tsx` and `TicketModal.tsx` components.

### Running Tests

To run the tests, execute the following commands in your project directory:
```bash
# Install dependencies
npm install
# Run tests
npm test
```
10 changes: 10 additions & 0 deletions components/HomePage/TestModalComponents.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import JoinModal from './JoinModal';
import TicketModal from './TicketModal';
const TestModalComponents = () => (
<div>
<JoinModal />
<TicketModal />
</div>
);
export default TestModalComponents;