1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-08-26 06:24:28 +02:00
This commit is contained in:
Antonio Laguna
2017-05-29 10:16:40 +02:00
parent 8a9ea037c0
commit c5ee83c940
17 changed files with 147 additions and 255 deletions

View File

@@ -142,7 +142,6 @@ describe('Animation', () => {
expect(DOM.getAnimationEvent(fakeEl)).toBe('oAnimationEnd');
});
test('Prefixed Gecko', () => {
const fakeEl = {
style: {
@@ -153,7 +152,6 @@ describe('Animation', () => {
expect(DOM.getAnimationEvent(fakeEl)).toBe('animationend');
});
test('Prefixed Webkit', () => {
const fakeEl = {
style: {
@@ -268,3 +266,4 @@ describe('Focusble Element', () => {
expect(DOM.isFocusableElement()).toBe(true);
});
});