forked from hyperledger-archives/composer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add getting started sample card (hyperledger-archives#2281)
Added a getting started sample card Updated my wallet to business network card Changed logout to my business networks updated all places refering to id cards updated coverage check contributes to hyperledger/composer#2269 Signed-off-by: Caroline Church <[email protected]>
Showing
30 changed files
with
567 additions
and
240 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { browser, element, by } from 'protractor'; | ||
import { ExpectedConditions } from 'protractor'; | ||
import { Constants } from '../utils/constants'; | ||
|
||
export class BusyAlert { | ||
|
||
// wait to disappear | ||
static waitToAppear() { | ||
return browser.wait(ExpectedConditions.visibilityOf(element(by.css('.busy-text'))), Constants.shortWait); | ||
} | ||
|
||
// wait to disappear | ||
static waitToDisappear() { | ||
return browser.wait(ExpectedConditions.invisibilityOf(element(by.css('.busy-text'))), Constants.shortWait); | ||
} | ||
|
||
} |
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.