The access settings modal should not have an editable title. Also, the title of the modal was not being interpolated correctly.
This commit is contained in:
Dave St.Germain
2019-10-25 13:38:39 -04:00
parent 73564a04b0
commit 05e0de2956
4 changed files with 11 additions and 11 deletions

View File

@@ -61,7 +61,7 @@ describe('EditXBlockModal', function() {
it('shows the correct title', function() {
var requests = AjaxHelpers.requests(this);
modal = showModal(requests, mockXBlockEditorHtml);
expect(modal.$('.modal-window-title span.modal-button-title').text()).toBe('Editing: Component');
expect(modal.$('.modal-window-title').text()).toBe('Editing: Component');
});
it('does not show any editor mode buttons', function() {