-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added test for screenshot component (#70)
- Loading branch information
1 parent
8beb22a
commit b0a0611
Showing
1 changed file
with
26 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import GlobalStyles from '../../src/components/GlobalStyles'; | ||
import Screenshot from '../../src/components/Screenshot'; | ||
|
||
export default { | ||
title: "ScreenshotComponent", | ||
component: Screenshot | ||
}; | ||
|
||
|
||
export const ScreenshotComponent = () => ( | ||
<> | ||
<GlobalStyles /> | ||
<Screenshot /> | ||
</> | ||
); | ||
|
||
ScreenshotComponent.test = async (browser,{component}) => { | ||
|
||
browser.expect(component).to.be.present.before(1000); | ||
|
||
|
||
browser.getCssProperty(component, 'height', function(result) { | ||
this.assert.ok(result.value !== '0px', 'Check if Screenshot height is not zero'); | ||
}); | ||
|
||
}; |