Commit dc7de86a authored by Leopoldthecoder's avatar Leopoldthecoder

remove test timeout

parent e3aa5ac5
...@@ -28,7 +28,7 @@ describe('Dialog', () => { ...@@ -28,7 +28,7 @@ describe('Dialog', () => {
expect(dialog.$el.style.display).to.not.equal('none'); expect(dialog.$el.style.display).to.not.equal('none');
done(); done();
}, 10); }, 10);
}).timeout(3000); });
it('render correct content', done => { it('render correct content', done => {
vm = createVue({ vm = createVue({
......
...@@ -152,7 +152,7 @@ describe('Dropdown', () => { ...@@ -152,7 +152,7 @@ describe('Dropdown', () => {
done(); done();
}, 300); }, 300);
}, 300); }, 300);
}).timeout(3000); });
it('hide on click', done => { it('hide on click', done => {
vm = createVue({ vm = createVue({
template: ` template: `
......
...@@ -357,7 +357,7 @@ describe('Form', () => { ...@@ -357,7 +357,7 @@ describe('Form', () => {
}, 100); }, 100);
}, 100); }, 100);
}); });
}).timeout(3000); });
it('datepicker', done => { it('datepicker', done => {
vm = createVue({ vm = createVue({
template: ` template: `
......
...@@ -147,7 +147,6 @@ describe('Menu', () => { ...@@ -147,7 +147,6 @@ describe('Menu', () => {
}); });
}); });
describe('submenu', function() { describe('submenu', function() {
this.timeout(3000);
it('toggle', done => { it('toggle', done => {
vm = createVue({ vm = createVue({
template: ` template: `
......
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