├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENCE ├── README.md ├── beans ├── attachment.js ├── description.js ├── step.js ├── suite.js └── test.js ├── index.js ├── jasmine.json ├── package.json ├── runtime.js ├── test ├── .eslintrc ├── helpers │ └── mock-fs.js ├── index.spec.js ├── intergration.spec.js └── runtime.spec.js ├── util.js └── writer.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependency directory 2 | node_modules 3 | .idea 4 | 5 | 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/README.md -------------------------------------------------------------------------------- /beans/attachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/beans/attachment.js -------------------------------------------------------------------------------- /beans/description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/beans/description.js -------------------------------------------------------------------------------- /beans/step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/beans/step.js -------------------------------------------------------------------------------- /beans/suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/beans/suite.js -------------------------------------------------------------------------------- /beans/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/beans/test.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/index.js -------------------------------------------------------------------------------- /jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/jasmine.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/package.json -------------------------------------------------------------------------------- /runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/runtime.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/helpers/mock-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/test/helpers/mock-fs.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/intergration.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/test/intergration.spec.js -------------------------------------------------------------------------------- /test/runtime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/test/runtime.spec.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/util.js -------------------------------------------------------------------------------- /writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-js-commons/HEAD/writer.js --------------------------------------------------------------------------------