forked from allure-framework/allure-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial decorators support (fixes allure-framework#7).
- Added a separate `allure-decorators` module to allow setting framework-specific Allure implementation explicitly in a client code. - Created core decorators for the main Allure functions like step, attachments, issue, etc. - Added a testdeck extension for data-driven tests. Note that testdeck currently supports only Mocha, Jasmine and Jest. Any other integrations should be additionally discussed and designed. - Updated outdated typescript linter dependencies that caused issues while creating a new module. Note that this update introduced some failures in the other modules (primarily related to shadow/unknown objects), that were fixed within this commit.
- Loading branch information
Showing
50 changed files
with
4,836 additions
and
64 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = { | ||
globals: { | ||
__PATH_PREFIX__: true, | ||
}, | ||
env: { | ||
browser: true, | ||
node: true, | ||
es6: true, | ||
}, | ||
extends: [ | ||
"../../.eslintrc.js", | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
* | ||
!dist/** | ||
!package.json | ||
!*.md | ||
!*.txt |
Oops, something went wrong.