An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

### All Tests Passed

a screenshot of 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