-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1755 from hollaex/beta
Beta
- Loading branch information
Showing
52 changed files
with
447 additions
and
161 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
swagger: "2.0" | ||
info: | ||
version: "2.4.4" | ||
version: "2.4.5" | ||
title: HollaEx Kit | ||
host: api.hollaex.com | ||
basePath: /v2 | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "2.4.4", | ||
"version": "2.4.5", | ||
"private": false, | ||
"description": "HollaEx Kit", | ||
"keywords": [ | ||
|
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,47 @@ | ||
//*** Let name it cucumber-html-report.js ** | ||
//the newst version | ||
var os = require('os'); | ||
const { detect } = require('detect-browser'); | ||
const browser = detect(); | ||
const report = require("multiple-cucumber-html-reporter"); | ||
const cypress = require('cypress'); | ||
|
||
report.generate( | ||
{jsonDir: "cypress/cucumber-json", // ** Path of .json file **// | ||
reportPath: "./reports/cucumber-htmlreport.html", | ||
pageTitle: "Hollaex Kit Tests Report", | ||
reportName : "Test result", | ||
pageFooter : "Hollaex QA team", | ||
displayDuration: true, | ||
displayReportTime : true, | ||
metadata: { | ||
|
||
browser: { | ||
|
||
scenarioTimestamp : true, | ||
name: "chrome", | ||
version: browser.name+browser.version+browser.os | ||
}, | ||
device: "Local test machine", | ||
platform: {name: os.platform()+os.version, | ||
|
||
version: "11",env:'HollaexKit'} | ||
,}, | ||
customData: { | ||
title: 'Run info', | ||
data: [ | ||
{label: 'Project', value: 'Hollaex Kit'}, | ||
{label: 'Release', value: '2.4'}, | ||
{label: 'Cycle', value: '1'}, | ||
{label: 'Execution Time', value: Date()}, | ||
|
||
] | ||
} | ||
|
||
|
||
,} | ||
|
||
|
||
); | ||
|
||
|
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
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 |
---|---|---|
@@ -1,25 +1,39 @@ | ||
{ | ||
"devDependencies": { | ||
"@4tw/cypress-drag-drop": "^2.1.0", | ||
"@cucumber/cucumber": "^8.5.3", | ||
"@cucumber/pretty-formatter": "^1.0.0", | ||
"@cypress-audit/lighthouse": "^1.3.1", | ||
"cypress": "^9.2.0", | ||
"cypress-audit": "^1.1.0", | ||
"cypress-iframe": "^1.0.1", | ||
"cypress-timings": "^1.0.0", | ||
"cypress-xpath": "^1.6.2", | ||
"eslint": "^8.11.0", | ||
"multiple-cucumber-html-reporter": "^2.0.0", | ||
"prettier": "2.6.0" | ||
}, | ||
"dependencies": { | ||
"@badeball/cypress-cucumber-preprocessor": "^13.0.0", | ||
"cucumber-perf": "^2.0.1", | ||
"cypress-cucumber-preprocessor": "^4.3.1", | ||
"cypress-tags": "^1.0.0", | ||
"cypress-lighthouse": "^0.1.0", | ||
"detect-browser": "^5.3.0", | ||
"save-dev": "^0.0.1-security", | ||
"totp-generator": "^0.0.13" | ||
}, | ||
"cypress-cucumber-preprocessor": { | ||
"cucumberJson": { | ||
"generate": true, | ||
"outputFolder": "cypress/cucumber-json", | ||
"filePrefix": "", | ||
"fileSuffix": ".cucumber" | ||
}, | ||
"nonGlobalStepDefinitions": true | ||
}, | ||
"scripts": { | ||
"debug.javascript.codelens.npmScripts": "never", | ||
"test-ci": "npx cypress-tags run --browser chrome --record -e", | ||
"test": "npx cypress-tags run --browser chrome -e", | ||
"pre-ci": "npm run test-ci TAGS=@pre", | ||
"test": "npx cypress-tags run -e", | ||
"pre": "npm test TAGS=@pre" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
2.4.4 | ||
2.4.5 |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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 |
---|---|---|
|
@@ -37,6 +37,7 @@ $placeholder--font-weight: bold; | |
} | ||
&:disabled { | ||
cursor: not-allowed; | ||
opacity: 0.5; | ||
} | ||
} | ||
|
||
|
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
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
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
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
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
Oops, something went wrong.