├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src └── Jasmine2AllureReporter.js └── test ├── helpers └── utils.js ├── jasmine.json ├── system ├── README.md ├── conf.js ├── package.json ├── todo-spec-failing.js └── todo-spec.js └── unit └── AllureReporter.spec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/package.json -------------------------------------------------------------------------------- /src/Jasmine2AllureReporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/src/Jasmine2AllureReporter.js -------------------------------------------------------------------------------- /test/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/test/helpers/utils.js -------------------------------------------------------------------------------- /test/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/test/jasmine.json -------------------------------------------------------------------------------- /test/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/test/system/README.md -------------------------------------------------------------------------------- /test/system/conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/test/system/conf.js -------------------------------------------------------------------------------- /test/system/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/test/system/package.json -------------------------------------------------------------------------------- /test/system/todo-spec-failing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/test/system/todo-spec-failing.js -------------------------------------------------------------------------------- /test/system/todo-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/test/system/todo-spec.js -------------------------------------------------------------------------------- /test/unit/AllureReporter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-jasmine/HEAD/test/unit/AllureReporter.spec.js --------------------------------------------------------------------------------