Allow duplicate content

[MAILPOET-968]
This commit is contained in:
Pavel Dohnal
2017-07-11 09:56:54 +01:00
parent 23d90c9f73
commit 695152e947
5 changed files with 37 additions and 2 deletions

View File

@ -135,6 +135,10 @@ define([
it('does not have a settings tool', function () {
expect(view.$('.mailpoet_edit_block')).to.have.length(0);
});
it('has a duplication tool', function () {
expect(view.$('.mailpoet_duplicate_block')).to.have.length(1);
});
});
describe.skip('on non-root levels', function () {
@ -164,6 +168,10 @@ define([
it('has a settings tool', function () {
expect(view.$('.mailpoet_edit_block')).to.have.length(1);
});
it('has a duplication tool', function () {
expect(view.$('.mailpoet_duplicate_block')).to.have.length(1);
});
});
});