RxJS boilerplate for test cases.
- Create a test case file (JavaScript file) based on the template (template.js).
- Add RxJS code into the wrapper (replace placeholder).
- Import created test case file into the imports.js.
- Run script (
npm start
).
- src/testcases - place your test cases (JavaScript files) here,
- Node.js
- npm
npm install
npm start
Import your test case file here. Comment (disable) unused imports (test case files).
Place your RxJS code inside the wrapper.
// place RxJS imports here
export function run() {
// place your RxJS code here
};