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

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Hsu <henry.hsu@nasa.gov>2021-06-07 18:49:13 +0300
committerHenry Hsu <henry.hsu@nasa.gov>2021-06-07 18:49:13 +0300
commit2f865e952d343eddee27c95e637308e1c750bdb5 (patch)
tree02cc1c6239fdefb7a819b1acc08e591d8075aff2
parenta40867d5443963a2b7d4f1b69607593071a1673a (diff)
add testissue#3926
-rw-r--r--src/plugins/tabs/pluginSpec.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/tabs/pluginSpec.js b/src/plugins/tabs/pluginSpec.js
index 065cb5069..e387a790d 100644
--- a/src/plugins/tabs/pluginSpec.js
+++ b/src/plugins/tabs/pluginSpec.js
@@ -25,7 +25,7 @@ import TabsLayout from './plugin';
import Vue from "vue";
import EventEmitter from "EventEmitter";
-describe('the plugin', function () {
+fdescribe('the plugin', function () {
let element;
let child;
let openmct;
@@ -175,5 +175,9 @@ describe('the plugin', function () {
let tabEls = element.querySelectorAll('.js-tab');
expect(tabEls.length).toEqual(2);
});
+
+ it ('closes tabs', () => {
+ // click on close button and verify tabEls length
+ });
});
});