Files
30-seconds-of-code/test/recordAnimationFrames/recordAnimationFrames.test.js
2018-03-06 20:32:31 +00:00

13 lines
596 B
JavaScript

const test = require('tape');
const recordAnimationFrames = require('./recordAnimationFrames.js');
test('Testing recordAnimationFrames', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof recordAnimationFrames === 'function', 'recordAnimationFrames is a Function');
//t.deepEqual(recordAnimationFrames(args..), 'Expected');
//t.equal(recordAnimationFrames(args..), 'Expected');
//t.false(recordAnimationFrames(args..), 'Expected');
//t.throws(recordAnimationFrames(args..), 'Expected');
t.end();
});