Simon Egersand
2017-02-13 34dbebbe5b0a67771a2e79c8e6b349048c831cb4
Do not skip long running tests

They were skipped and then forgotten to be turned back on again.
1 files modified
4 ■■■■ changed files
tests/datetime.spec.js 4 ●●●● patch | view | raw | blame | history
tests/datetime.spec.js
@@ -497,7 +497,7 @@
            expect(component.find('.rdtCount').at(2).text()).toEqual('01');
        });
        test.skip('long increase time', (done) => {
        it('long increase time', (done) => {
            const date = new Date(2000, 0, 15, 2, 2, 2, 2),
                component = utils.createDatetime({ timeFormat: 'HH:mm:ss:SSS', viewMode: 'time', defaultValue: date });
@@ -509,7 +509,7 @@
            }, 920);
        });
        test.skip('long decrease time', (done) => {
        it('long decrease time', (done) => {
            const date = new Date(2000, 0, 15, 2, 2, 2, 2),
                component = utils.createDatetime({ timeFormat: 'HH:mm:ss:SSS', viewMode: 'time', defaultValue: date });