Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/ng-dialog/tests/protractor/closeByNavigation.js')
-rw-r--r--node_modules/ng-dialog/tests/protractor/closeByNavigation.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/node_modules/ng-dialog/tests/protractor/closeByNavigation.js b/node_modules/ng-dialog/tests/protractor/closeByNavigation.js
new file mode 100644
index 0000000000..d84ebb69a1
--- /dev/null
+++ b/node_modules/ng-dialog/tests/protractor/closeByNavigation.js
@@ -0,0 +1,39 @@
+describe('ngDialog closeByNavigation', function () {
+
+ it('should close on state change with legacy ui-router', function () {
+ // Load page
+ browser.get('http://localhost:3000/example/browser-back-button/index.html');
+
+ // Click button to go to 'about' state
+ element(by.css('[ui-sref=about]')).click();
+
+ // Expect a visible dialog on the page
+ var EC = protractor.ExpectedConditions;
+ browser.wait(EC.visibilityOf(element(by.css('.ngdialog'))), 5000);
+
+ // Go back to 'home' state
+ browser.navigate().back();
+
+ // Expect there's no visible dialog on the page
+ browser.wait(EC.not(EC.presenceOf(element(by.css('.ngdialog')))), 5000);
+ });
+
+ it('should close on state change with legacy ui-router', function () {
+ // Load page
+ browser.get('http://localhost:3000/example/browser-back-button/ui-router-1.0.0-rc.1.html');
+
+ // Click button to go to 'about' state
+ element(by.css('[ui-sref=about]')).click();
+
+ // Expect a visible dialog on the page
+ var EC = protractor.ExpectedConditions;
+ browser.wait(EC.visibilityOf(element(by.css('.ngdialog'))), 5000);
+
+ // Go back to 'home' state
+ browser.navigate().back();
+
+ // Expect there's no visible dialog on the page
+ browser.wait(EC.not(EC.presenceOf(element(by.css('.ngdialog')))), 5000);
+ });
+
+});