Skip to content

Commit

Permalink
log CSS styles
Browse files Browse the repository at this point in the history
log CSS styles
  • Loading branch information
Forchapeatl authored Aug 31, 2022
1 parent a94679e commit a74ce83
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/ui/presets.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ describe('Presets Raw ', () => {
const preset_modalInput = await page.evaluate(() => getComputedStyle(document.querySelector('#preset-modal')).display);
// Get Css display of #colorbar_container
const colorbar_containerInput = await page.evaluate(() => getComputedStyle(document.querySelector('#colorbar-container')).display);

//log css styles
console.log(">>>>>>>>>>>>>>>>>>>>>>>> "+ colorbar_containerInput );
console.log(">>>>>>>>>>>>>>>>>>>>>>>> "+ preset_modalInput );

// Check if #colorbar_Container appears
expect(colorbar_containerInput).toEqual('none');
// Check if #preset_modal appears
Expand Down

0 comments on commit a74ce83

Please sign in to comment.