https://github.com/calebcadainoo/webfx-react-jest-test
ReactJS test driven class development with Jest
https://github.com/calebcadainoo/webfx-react-jest-test
jest jest-tests reactjs testing testing-tools
Last synced: about 2 months ago
JSON representation
ReactJS test driven class development with Jest
- Host: GitHub
- URL: https://github.com/calebcadainoo/webfx-react-jest-test
- Owner: calebcadainoo
- Created: 2021-03-08T11:48:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-10T00:13:10.000Z (over 5 years ago)
- Last Synced: 2025-02-15T23:44:39.469Z (over 1 year ago)
- Topics: jest, jest-tests, reactjs, testing, testing-tools
- Language: JavaScript
- Homepage:
- Size: 28.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### All Tests Passed

### Brief
Implement a basic reactive system.
Reactive programming is a programming paradigm that focuses on how values
are computed in terms of each other to allow a change to one value to
automatically propagate to other values, like in a spreadsheet.
Implement a basic reactive system with cells with settable values ("input"
cells) and cells with values computed in terms of other cells ("compute"
cells). Implement updates so that when an input value is changed, values
propagate to reach a new stable system state.
In addition, compute cells should allow for registering change notification
callbacks. Call a cell’s callbacks when the cell’s value in a new stable
state has changed from the previous stable state.
## Setup
Install assignment dependencies:
p
```bash
$ npm install
```
## Making the test suite pass
Execute the tests with:
```bash
$ npm test
```
### Evaluation Criteria
- JavaScript best practices
- Show us your work through your commit history
- Completeness: did you complete the features? Are all the tests running?
- Correctness: does the functionality act in sensible, thought-out ways?
- Maintainability: is it written in a clean, maintainable way?
### CodeSubmit
Please organize, design, and document your code as if it were going into production - then push your changes
to the master branch. After you have pushed your code, you may submit the assignment on the assignment page.
All the best and happy coding,
The WebFX Team