Skip to content

Commit

Permalink
Added tcm config (#6)
Browse files Browse the repository at this point in the history
* Added tcm config

* Added eslint devDependencies

* Adjusted import

* Added .env.example

* Adjusted .env.example

* Refactoring

* Adjusted playwright.config.ts

* Minor updates
  • Loading branch information
dikazak authored Sep 14, 2023
1 parent 3adee63 commit 4339ff5
Show file tree
Hide file tree
Showing 34 changed files with 1,062 additions and 1,483 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"]
}
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish package to NPM
on:
push:
branches:
- master # Push events on master branch
- develop # Push events on master branch

jobs:
publish:
Expand Down
Loading

0 comments on commit 4339ff5

Please sign in to comment.