Skip to content

Commit

Permalink
Merge pull request #9 from zebrunner/feature/live-data
Browse files Browse the repository at this point in the history
v1.0.0
  • Loading branch information
Feuerstarter authored Jun 20, 2024
2 parents 52aa4d1 + ba8c8e8 commit 5fda44c
Show file tree
Hide file tree
Showing 180 changed files with 15,662 additions and 2,881 deletions.
9 changes: 9 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ REPORTING_SERVER_ACCESS_TOKEN=
REPORTING_LAUNCH_DISPLAY_NAME=
REPORTING_LAUNCH_BUILD=
REPORTING_LAUNCH_ENVIRONMENT=
REPORTING_LAUNCH_LOCALE=
REPORTING_LAUNCH_TREAT_SKIPS_AS_FAILURES=

REPORTING_LOGS_IGNORE_PLAYWRIGHT_STEPS=
REPORTING_LOGS_USE_LINES_FROM_SOURCE_CODE=
REPORTING_LOGS_IGNORE_CONSOLE=
REPORTING_LOGS_IGNORE_MANUAL=
REPORTING_LOGS_IGNORE_CUSTOM_SCREENSHOTS=
REPORTING_LOGS_IGNORE_AUTO_SCREENSHOTS=

REPORTING_MILESTONE_ID=
REPORTING_MILESTONE_NAME=
Expand Down
23 changes: 11 additions & 12 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,27 @@
"jest": true,
"node": true
},
"plugins": [
"@typescript-eslint"
],
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"airbnb-base"
"airbnb-base",
"prettier"
],
"rules": {
"max-line-length": [true, { "limit": 120 }],
"import/extensions": 0,
"no-console": 0,
"consistent-return": 0,
"no-template-curly-in-string": 0,
"indent": ["error", 4, { "ignoreComments": true, "SwitchCase": 1 }],
"import/prefer-default-export": [
"off"
],
"max-len": 0,
"import/no-extraneous-dependencies": 0,
"no-unused-vars": 0,
"spaced-comment": 0,
"indent": ["error", 2, { "ignoreComments": true, "SwitchCase": 1 }],
"import/prefer-default-export": ["off"],
"max-len": 1,
"import/no-extraneous-dependencies": 1,
"no-unused-vars": 1,
"spaced-comment": 1,
"implicit-arrow-linebreak": 0,
"no-underscore-dangle": 0,
"class-methods-use-this": 0,
"no-param-reassign": 0,
Expand Down
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,8 @@ dist

playwright-report/
test-results/
build/
results.json
results.json
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
9 changes: 4 additions & 5 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
module.exports = {
arrowParens: 'always',
bracketSpacing: false,
printWidth: 100,
semi: true,
singleQuote: true,
printWidth: 120,
tabWidth: 2,
trailingComma: 'es5',
};
trailingComma: 'all',
};
23 changes: 1 addition & 22 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,22 +1 @@

MIT License

Copyright (c) 2020 Daniel Ferrari <danielferrari@live.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Zebrunner reporting agent for Playwright is released under version 2.0 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0).
753 changes: 752 additions & 1 deletion README.md

Large diffs are not rendered by default.

58 changes: 58 additions & 0 deletions build/javascript-agent-playwright/CurrentLaunch.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/javascript-agent-playwright/CurrentLaunch.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

93 changes: 93 additions & 0 deletions build/javascript-agent-playwright/CurrentTest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/javascript-agent-playwright/CurrentTest.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5fda44c

Please sign in to comment.