Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/all.js

Issue 29891683: Noissue - Check if driver exists before destroying it, wait for result (Closed)
Patch Set: Created Sept. 25, 2018, 10:17 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/all.js
===================================================================
--- a/test/all.js
+++ b/test/all.js
@@ -95,7 +95,8 @@
after(function()
{
- this.driver.quit();
+ if (this.driver)
+ return this.driver.quit();
});
});
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld