De promotiewebsite die de reguliere site vervangt tijdens de Kick-In. https://join.harambee.utwente.nl
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
kick-in-promo-site/tests/unit/easingcss3.js

15 lines
470 B

QUnit.test('Testing easingCss3 value', function(assert) {
var id = '#fullpage';
var FP = initFullpageNew(id, {easingcss3: 'ease-in-out', scrollingSpeed: 50});
var done = assert.async(1);
FP.moveSectionDown();
setTimeout(function(){
var transition = $(WRAPPER_SEL).css('transition');
assert.ok(transition.indexOf('ease-in-out') > -1, 'We expect easing effect to be applied on the css3 transition');
done();
},100);
});