-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding feature map calculation * adding daily run
- Loading branch information
Showing
8 changed files
with
137 additions
and
16 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
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ node_modules/ | |
/playwright/.cache/ | ||
.auth/ | ||
*_spec3.json | ||
coverage-output.txt | ||
|
||
# System Files | ||
.DS_Store | ||
|
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,59 @@ | ||
- page: "/auth/login" | ||
features: | ||
sign in with google: false | ||
email: true | ||
password: true | ||
login: true | ||
register your account: false | ||
forgot password: false | ||
- page: "/auth/forgot-password" | ||
features: | ||
email: false | ||
set new password: false | ||
- page: "/auth/register" | ||
features: | ||
first name: false | ||
last name: false | ||
date of birth: false | ||
address: false | ||
postcode: false | ||
city: false | ||
state: false | ||
country: false | ||
phone rate: false | ||
e-mail address: false | ||
password: false | ||
register button: false | ||
- page: "/category/hand-tools" | ||
features: | ||
header: true | ||
sidebar: | ||
sort: false | ||
filters: false | ||
by brand: false | ||
product card: | ||
image: false | ||
image zoom: false | ||
title: false | ||
price: false | ||
pagination: | ||
previous: false | ||
next: false | ||
number: false | ||
- page: "/product/{id}" | ||
features: | ||
header: false | ||
product details: | ||
image: false | ||
title: false | ||
tags: false | ||
price: false | ||
description: false | ||
quantity: false | ||
add to cart: false | ||
add to favorites: false | ||
related products: | ||
image: false | ||
title: false | ||
more information: false | ||
footer: false |
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { test as calculation } from "@playwright/test"; | ||
import { calculateYamlCoverage } from "feature-map"; | ||
|
||
calculation("Feature Map", async () => { | ||
let runCalculationCoverage = process.env.CALCULATE_COVERAGE; | ||
if (runCalculationCoverage) { | ||
console.log("Calculating coverage"); | ||
calculateYamlCoverage("./featureMap.yml"); | ||
} else { | ||
console.log("Skipping coverage calculation"); | ||
} | ||
}); |