Skip to content

Commit

Permalink
chore(release): 1.2.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.2.0](v1.1.0...v1.2.0) (2023-05-04)

### Features

* Added cy.hubClear() to reset the plugin in between tests ([4e8f226](4e8f226))
* Added cy.hubVerifyInvokes to assert if the server has been called n times ([00b16d6](00b16d6))
  • Loading branch information
semantic-release-bot committed May 4, 2023
1 parent 2c08c5c commit e142300
Show file tree
Hide file tree
Showing 9 changed files with 201 additions and 161 deletions.
5 changes: 3 additions & 2 deletions dist/cypress-commands.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import IServerInvoke from "./types/IServerInvoke";
export declare function setupCypressCommands(): void;
export declare function hubPublish(hubName: string, action: string, payload: any): void;
export declare function hubVerify(hubName: string, action: string, times?: number, callback?: (invokes: IServerInvoke[]) => void): void;
export declare function hubPublish(hubName: string, messageType: string, payload: any): void;
export declare function hubVerify(hubName: string, messageType: string, callback?: (invokes: IServerInvoke[]) => void): void;
export declare function hubPrintData(): void;
export declare function hubClear(): void;
Loading

0 comments on commit e142300

Please sign in to comment.