├── .github └── workflows │ └── allure-report.yml ├── .mocharc.json ├── LICENSE ├── README.md ├── package.json ├── run.bat ├── run.sh └── test └── spec └── sample.js /.github/workflows/allure-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/mocha-npm-cjs-js/HEAD/.github/workflows/allure-report.yml -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/mocha-npm-cjs-js/HEAD/.mocharc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/mocha-npm-cjs-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/mocha-npm-cjs-js/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/mocha-npm-cjs-js/HEAD/package.json -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/mocha-npm-cjs-js/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/mocha-npm-cjs-js/HEAD/run.sh -------------------------------------------------------------------------------- /test/spec/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-examples/mocha-npm-cjs-js/HEAD/test/spec/sample.js --------------------------------------------------------------------------------