mirror of
https://github.com/nasa/openmct.git
synced 2025-01-12 16:02:51 +00:00
21 lines
750 B
JavaScript
21 lines
750 B
JavaScript
|
var right_click = require("../common/RightMenu.js");
|
||
|
var Create = require("../common/CreateItem")
|
||
|
describe('Delete Activity', function() {
|
||
|
var clickClass = new right_click();
|
||
|
var createClass = new Create();
|
||
|
var ITEM_NAME = "Activity";
|
||
|
var ITEM_TYPE = "activity";
|
||
|
var ITEM_MENU_GLYPH = 'a\nActivity';
|
||
|
//var ITEM_GRID_SELECT = 'P\nS\nTimeline\n0 Items';
|
||
|
var ITEM_SIDE_SELECT = ">\na\nActivity"
|
||
|
beforeEach(function() {
|
||
|
browser.ignoreSynchronization = true;
|
||
|
browser.get('http://localhost:1984/warp/');
|
||
|
browser.sleep(2000); // 20 seconds
|
||
|
});
|
||
|
it('should delete the Activity', function(){
|
||
|
clickClass.delete(ITEM_SIDE_SELECT);
|
||
|
browser.sleep(1000);
|
||
|
});
|
||
|
|
||
|
});
|