Commit da7d0260 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'fix-merge-request-spec' into 'master'

Fix merge_request_spec test

See merge request gitlab-org/gitlab-ce!32867
parents 8ace6442 3fe0ffff
......@@ -29,15 +29,17 @@ describe('MergeRequest', function() {
mock.restore();
});
it('modifies the Markdown field', function() {
it('modifies the Markdown field', done => {
spyOn($, 'ajax').and.stub();
const changeEvent = document.createEvent('HTMLEvents');
changeEvent.initEvent('change', true, true);
$('input[type=checkbox]')
.attr('checked', true)[0]
.dispatchEvent(changeEvent);
expect($('.js-task-list-field').val()).toBe('- [x] Task List Item');
setTimeout(() => {
expect($('.js-task-list-field').val()).toBe('- [x] Task List Item');
done();
});
});
describe('tasklist', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment