Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martypdx/dsna-practice
https://github.com/martypdx/dsna-practice
Last synced: about 10 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/martypdx/dsna-practice
- Owner: martypdx
- Created: 2022-06-09T16:15:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-16T22:14:56.000Z (over 2 years ago)
- Last Synced: 2024-10-12T14:50:36.492Z (about 1 month ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures and Algorithms
To add a new topic:
1. Create a new folder based on the topic, like `operators`
1. Create two files:
1. `operators.js` - has the code that will be tested
1. `operators.test.js` - has the tests for that codeYour project should now have these files and folder:
```
operators
|- operators.js
|- operators.tests.js
```Add the import for the test file into `tests.js`:
```js
import './operators/operators.test.js';
```See [these instructions](tdd-qunit.md) for writing tests