qa-shadow-report
Version:
npm package that prints formatted test reports into a google sheet or csv file
26 lines (23 loc) • 560 B
JavaScript
/**
* Define the standard RGB values for black color.
*/
const black = { red: 0, green: 0, blue: 0, alpha: 1 };
/**
* Define the border color.
*/
const borderColor = black;
/**
* Define the border styles.
* `solidBlackWidthTwo` is for a border with a width of 2 and solid black color.
* `solidBlackWidthOne` is for a border with a width of 1 and solid black color.
*/
export const solidBlackWidthTwo = {
style: 'SOLID',
width: 2,
color: borderColor,
};
export const solidBlackWidthOne = {
style: 'SOLID',
width: 1,
color: borderColor,
};