react-development-test-component
v0.1.15
Published
This React development tool provides a convenient interface for running and monitoring test cases. It allows you to execute individual test functions, run all tests multiple times, and focus on failed tests for debugging purposes. ## Prerequisites ๐ ๏ธ
Downloads
10
Maintainers
Readme
React Test Development Tool ๐
This React development tool provides a convenient interface for running and monitoring test cases. It allows you to execute individual test functions, run all tests multiple times, and focus on failed tests for debugging purposes.
Prerequisites ๐ ๏ธ
Before using this library, ensure that you have the following dependencies installed:
- - Node.js runtime environment.
- or - Package managers for installing and managing dependencies.
Installation ๐ ๏ธ
To use this library in your React project, follow these steps:
Install the package using npm or yarn:
npm i react-development-test-component
yarn add react-development-test-component
Import the necessary components into your project:
import DevelopmentTool from 'react-development-test-component';
Usage โน๏ธ
DevelopmentTool Component
The DevelopmentTool
component renders a user-friendly interface for running tests and handling login credentials (if required). It accepts the following props:
testFunctions
: An array of functions representing test cases.loginFetch
: The function to handle login form submission.
Example usage:
import React from 'react';
import DevelopmentTool from 'react-development-test-component';
const MyComponent = () => {
// Define test functions
const testFunctions = [
// Define your test functions here
];
// Function to handle login form submission
const handleLoginFetch = (username, password) => {
// Implement your login logic here
};
return (
<DevelopmentTool testFunctions={testFunctions} loginFetch={handleLoginFetch} />
);
};
export default MyComponent;
TestRunnerComponent
The TestRunnerComponent
is an internal component used by the DevelopmentTool
for executing and displaying test results. It can also be used independently if needed. It accepts the following props:
testFunctions
: An array of functions representing test cases.
Example usage:
import React from 'react';
import TestRunnerComponent from 'react-development-test-component';
const MyTestRunner = () => {
// Define test functions
const testFunctions = [
// Define your test functions here
];
return (
<TestRunnerComponent testFunctions={testFunctions} />
);
};
export default MyTestRunner;
Features ๐
- Run All Tests: Execute all test functions a specified number of times.
- Run Only Failed Tests: Run only the tests that have failed in previous executions.
- Test Results: View detailed test results, including test names, states (correct or incorrect), and messages.
Contributing ๐ค
Contributions are welcome! If you encounter any issues or have suggestions for improvement, please open an issue on the GitHub repository.
License ๐
This project is licensed under the MIT License - see the LICENSE file for details.