# testrunner **Repository Path**: mirrors_moxiecode/testrunner ## Basic Information - **Project Name**: testrunner - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-02-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README TestRunner ========== To visualize coverage data we currently use [JSCovReporter](https://github.com/jayarjo/JSCovReporter), which seems to be simple enough and pretty. We include it as a submodule under `coverage/js/`. *Supposed file structure:* ``` tests/ js/ project/ Example.html tests.js index.html ``` This way `TestRunner` can be included into an arbitrary project as a submodule under `js/` folder, without interfering with test files. *index.html* ```html Test Runner ``` *project/tests.js* ```javascript { "title": "example", "tests": [ { "title": "Example", "url": "Example.html" } ] } ``` *project/Example.html* ```html Test File

Test Suite

```