Skip to content
This repository was archived by the owner on Jul 30, 2018. It is now read-only.

Commit 3bf51f2

Browse files
authored
Fix type annotation for functional tests (#364)
1 parent 1e7b0a8 commit 3bf51f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/functional/text/textPlugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import pollUntil from '@theintern/leadfoot/helpers/pollUntil';
66

77
declare const require: Require;
88

9-
async function executeTest(suite: Suite, htmlTestPath: string, timeout = 10000) {
9+
async function executeTest(suite: Suite, htmlTestPath: string, timeout = 10000): Promise<any> {
1010
try {
1111
return await suite.remote.get(htmlTestPath).then(pollUntil<{ text: string; }>(function () {
1212
return (<any> window).loaderTestResults || null;

0 commit comments

Comments
 (0)