{"id":17771426,"url":"https://github.com/rootslab/dado","last_synced_at":"2025-07-28T02:07:23.169Z","repository":{"id":24161983,"uuid":"27552044","full_name":"rootslab/dado","owner":"rootslab","description":"Dado,  a simple and dirty test runner.","archived":false,"fork":false,"pushed_at":"2018-02-10T14:40:38.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-09T07:59:33.207Z","etag":null,"topics":["test","test-runner"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"stokingerl/Angular2-Electron-Boilerplate","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rootslab.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-12-04T17:38:58.000Z","updated_at":"2017-12-09T01:26:20.000Z","dependencies_parsed_at":"2022-07-10T10:46:05.998Z","dependency_job_id":null,"html_url":"https://github.com/rootslab/dado","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/rootslab/dado","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rootslab%2Fdado","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rootslab%2Fdado/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rootslab%2Fdado/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rootslab%2Fdado/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rootslab","download_url":"https://codeload.github.com/rootslab/dado/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rootslab%2Fdado/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267451489,"owners_count":24089312,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["test","test-runner"],"created_at":"2024-10-26T21:32:50.549Z","updated_at":"2025-07-28T02:07:23.147Z","avatar_url":"https://github.com/rootslab.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Dado\n\n[![NPM VERSION](http://img.shields.io/npm/v/dado.svg?style=flat)](https://www.npmjs.org/package/dado)\n[![CODACY BADGE](https://img.shields.io/codacy/b18ed7d95b0a4707a0ff7b88b30d3def.svg?style=flat)](https://www.codacy.com/public/44gatti/dado)\n[![CODECLIMATE-TEST-COVERAGE](https://img.shields.io/codeclimate/c/rootslab/dado.svg?style=flat)](https://codeclimate.com/github/rootslab/dado)\n[![LICENSE](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/rootslab/dado#mit-license)\n\n![NODE VERSION](https://img.shields.io/node/v/dado.svg)\n[![TRAVIS CI BUILD](http://img.shields.io/travis/rootslab/dado.svg?style=flat)](http://travis-ci.org/rootslab/dado)\n[![BUILD STATUS](http://img.shields.io/david/rootslab/dado.svg?style=flat)](https://david-dm.org/rootslab/dado)\n[![DEVDEPENDENCY STATUS](http://img.shields.io/david/dev/rootslab/dado.svg?style=flat)](https://david-dm.org/rootslab/dado#info=devDependencies)\n\n[![NPM MONTHLY](http://img.shields.io/npm/dm/dado.svg?style=flat)](http://npm-stat.com/charts.html?package=dado)\n![NPM YEARLY](https://img.shields.io/npm/dy/dado.svg)\n\n[![NPM GRAPH](https://nodei.co/npm/dado.png?downloads=true\u0026downloadRank=true\u0026stars=true)](https://nodei.co/npm/dado/)\n\n\u003e __Dado__, a simple and dirty test runner.\n\n### Install\n\n```bash\n$ npm install dado [-g]\n```\n\n\u003e __require__:\n\n```javascript\nvar Dado  = require( 'dado' );\n```\n\n### Run Tests\n\n```bash\n$ cd dado/\n$ npm test\n```\n\n### Constructor\n\n```javascript\nDado( [ Object opt ] )\n// or\nnew Dado( [ Object opt ] )\n```\n\n#### Options\n\n\u003e Default options are listed.\n\n```javascript\nopt = {\n}\n```\n\n### Properties\n\n```javascript\n /*\n  * Instance configuration object.\n  */\n Dado.options : Object\n```\n\n### Methods\n\n\u003e Arguments within [ ] are optional.\n\n```javascript\n/*\n * Run tests from specified directory, default value for path is 'test' (or './test').\n * Optionally, if Dado default position is not in 'node_modules', you can specify the\n * relative path from 'dado/lib' directory to the root dir of the module to test\n * (default relative path is * '../../../').\n * The optional callback will be executed when all test files are executed, this function\n * gets 2 args/objs: queues for collected files and stats.\n *\n * NOTE:\n * - Only files ending with '-test.js' are loaded from the specified path/dir.\n * - Every loaded file should exports a 'test' property/method that gets 2 arguments,\n *   an object with some methods for assertions and a done function that you should call\n *   for properly exiting from the test.\n */\nDado#do : function ( String test_dir_path [, String module_relative_path [, Function callback ] ] ) : undefined\n\n/*\n * Reset global queues and stats objects.\n */\nDado#reset : function () : Dado\n```\n\n### MIT License\n\n\u003e Copyright (c) 2014-present \u0026lt; Guglielmo Ferri : 44gatti@gmail.com \u0026gt;\n\n\u003e Permission is hereby granted, free of charge, to any person obtaining\n\u003e a copy of this software and associated documentation files (the\n\u003e 'Software'), to deal in the Software without restriction, including\n\u003e without limitation the rights to use, copy, modify, merge, publish,\n\u003e distribute, sublicense, and/or sell copies of the Software, and to\n\u003e permit persons to whom the Software is furnished to do so, subject to\n\u003e the following conditions:\n\n\u003e __The above copyright notice and this permission notice shall be\n\u003e included in all copies or substantial portions of the Software.__\n\n\u003e THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n\u003e EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\u003e MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n\u003e IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n\u003e CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n\u003e TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n\u003e SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frootslab%2Fdado","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frootslab%2Fdado","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frootslab%2Fdado/lists"}