mirror of https://github.com/ElemeFE/element
remove test timeout
parent
e3aa5ac594
commit
dc7de86a67
|
@ -28,7 +28,7 @@ describe('Dialog', () => {
|
|||
expect(dialog.$el.style.display).to.not.equal('none');
|
||||
done();
|
||||
}, 10);
|
||||
}).timeout(3000);
|
||||
});
|
||||
|
||||
it('render correct content', done => {
|
||||
vm = createVue({
|
||||
|
|
|
@ -152,7 +152,7 @@ describe('Dropdown', () => {
|
|||
done();
|
||||
}, 300);
|
||||
}, 300);
|
||||
}).timeout(3000);
|
||||
});
|
||||
it('hide on click', done => {
|
||||
vm = createVue({
|
||||
template: `
|
||||
|
|
|
@ -357,7 +357,7 @@ describe('Form', () => {
|
|||
}, 100);
|
||||
}, 100);
|
||||
});
|
||||
}).timeout(3000);
|
||||
});
|
||||
it('datepicker', done => {
|
||||
vm = createVue({
|
||||
template: `
|
||||
|
|
|
@ -147,7 +147,6 @@ describe('Menu', () => {
|
|||
});
|
||||
});
|
||||
describe('submenu', function() {
|
||||
this.timeout(3000);
|
||||
it('toggle', done => {
|
||||
vm = createVue({
|
||||
template: `
|
||||
|
|
Loading…
Reference in New Issue