refactor some code

This commit is contained in:
Philipp Kunz 2017-06-04 19:08:36 +02:00
parent 5010e882f6
commit 42933e6bb0

View File

@ -15,14 +15,14 @@ export class TapTools {
/**
* allow failure
*/
allowFailure() {
allowFailure () {
this._tapTest.failureAllowed = true
}
/**
* async/await delay method
*/
async delayFor(timeMilliArg) {
async delayFor (timeMilliArg) {
await plugins.smartdelay.delayFor(timeMilliArg)
}