Skip to content

Commit

Permalink
0.1.0: Added TCM integrations and refactored configuration (#7)
Browse files Browse the repository at this point in the history
* Added tcm config (#6)

* Added tcm config

* Added eslint devDependencies

* Adjusted import

* Added .env.example

* Adjusted .env.example

* Refactoring

* Adjusted playwright.config.ts

* Minor updates

* 0.0.4-dev1: Fixed finding of ZebrunnerReporter

* 0.0.4-dev2: Updated config file

* 0.1.0: Added TCM integrations and refactored configuration

---------

Co-authored-by: dikazak <74558469+dikazak@users.noreply.github.com>
  • Loading branch information
asukhodolova and dikazak authored Sep 15, 2023
1 parent 3adee63 commit 52aa4d1
Show file tree
Hide file tree
Showing 33 changed files with 1,085 additions and 1,506 deletions.
41 changes: 41 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
REPORTING_ENABLED=
REPORTING_PROJECT_KEY=
REPORTING_SERVER_HOSTNAME=
REPORTING_SERVER_ACCESS_TOKEN=

REPORTING_LAUNCH_DISPLAY_NAME=
REPORTING_LAUNCH_BUILD=
REPORTING_LAUNCH_ENVIRONMENT=

REPORTING_MILESTONE_ID=
REPORTING_MILESTONE_NAME=

REPORTING_NOTIFICATION_NOTIFY_ON_EACH_FAILURE=
REPORTING_NOTIFICATION_SLACK_CHANNELS=
REPORTING_NOTIFICATION_MS_TEAMS_CHANNELS=
REPORTING_NOTIFICATION_EMAILS=

REPORTING_TCM_TEST_CASE_STATUS_ON_PASS=
REPORTING_TCM_TEST_CASE_STATUS_ON_FAIL=

REPORTING_TCM_ZEBRUNNER_PUSH_RESULTS=
REPORTING_TCM_ZEBRUNNER_PUSH_IN_REAL_TIME=
REPORTING_TCM_ZEBRUNNER_TEST_RUN_ID=

REPORTING_TCM_TESTRAIL_PUSH_RESULTS=
REPORTING_TCM_TESTRAIL_PUSH_IN_REAL_TIME=
REPORTING_TCM_TESTRAIL_SUITE_ID=
REPORTING_TCM_TESTRAIL_RUN_ID=
REPORTING_TCM_TESTRAIL_INCLUDE_ALL_IN_NEW_RUN=
REPORTING_TCM_TESTRAIL_RUN_NAME=
REPORTING_TCM_TESTRAIL_MILESTONE_NAME=
REPORTING_TCM_TESTRAIL_ASSIGNEE=

REPORTING_TCM_XRAY_PUSH_RESULTS=
REPORTING_TCM_XRAY_PUSH_IN_REAL_TIME=
REPORTING_TCM_XRAY_EXECUTION_KEY=

REPORTING_TCM_ZEPHYR_PUSH_RESULTS=
REPORTING_TCM_ZEPHYR_PUSH_IN_REAL_TIME=
REPORTING_TCM_ZEPHYR_JIRA_PROJECT_KEY=
REPORTING_TCM_ZEPHYR_TEST_CYCLE_KEY=
44 changes: 44 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"airbnb-base"
],
"rules": {
"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,
"no-underscore-dangle": 0,
"class-methods-use-this": 0,
"no-param-reassign": 0,
"no-nested-ternary": 0
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
}
}
Loading

0 comments on commit 52aa4d1

Please sign in to comment.