-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
/// <reference types="cypress" /> | ||
|
||
context('A running read the docs push', () => { | ||
it('opens the CIMonitor dashboard', () => { | ||
cy.visit('/'); | ||
}); | ||
it('opens the CIMonitor dashboard', () => { | ||
cy.visit('/'); | ||
}); | ||
|
||
it('pushes a failed build', () => { | ||
cy.readthedocs(`build-failed/1`); | ||
cy.wait(1000); | ||
cy.readthedocs(`build-failed/2`); | ||
}); | ||
it('pushes a failed build', () => { | ||
cy.readthedocs(`build-failed/1`); | ||
cy.wait(1000); | ||
cy.readthedocs(`build-failed/2`); | ||
}); | ||
|
||
it('pushes a successful build', () => { | ||
cy.wait(2000); | ||
cy.readthedocs(`build-success/1`); | ||
cy.wait(1000); | ||
cy.readthedocs(`build-success/2`); | ||
}); | ||
it('pushes a successful build', () => { | ||
cy.wait(2000); | ||
cy.readthedocs(`build-success/1`); | ||
cy.wait(1000); | ||
cy.readthedocs(`build-success/2`); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "cimonitor", | ||
"version": "4.11.0", | ||
"version": "4.11.1", | ||
"description": "Monitors all your projects CI automatically", | ||
"repository": "[email protected]:FuturePortal/CIMonitor.git", | ||
"license": "MIT", | ||
|