Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(doc): Spelling updates to comments in plugin.ts(#4797)
Browse files Browse the repository at this point in the history
Updated some of the spelling errors/ punctuation mistakes for clearer understanding.
  • Loading branch information
drew0530 authored and qiyigg committed May 10, 2018
1 parent 76324b8 commit c6703a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ export interface ProtractorPlugin {

/**
* This is called before the test have been run but after the test framework has
* been set up. Analogous to a config file's `onPreare`.
* been set up. Analogous to a config file's `onPrepare`.
*
* Very similar to using `setup`, but allows you to access framework-specific
* variables/funtions (e.g. `jasmine.getEnv().addReporter()`).
* variables/functions (e.g. `jasmine.getEnv().addReporter()`).
*
* @this {Object} bound to module.exports.
*
Expand Down Expand Up @@ -100,7 +100,7 @@ export interface ProtractorPlugin {
*
* @return {Promise=} Can return a promise, in which case protractor will wait
* for the promise to resolve before outputting test results. Protractor
* will *not* wait before executing the next test, however. If the promise
* will *not* wait before executing the next test; however, if the promise
* is rejected, a failed assertion is added to the test results.
*/
postTest?(passed: boolean, testInfo: any): void|Promise<void>;
Expand Down

0 comments on commit c6703a5

Please sign in to comment.