Travis build: 1259 [custom]
This commit is contained in:
13
test/observeMutations/observeMutations.test.js
Normal file
13
test/observeMutations/observeMutations.test.js
Normal file
@ -0,0 +1,13 @@
|
||||
const test = require('tape');
|
||||
const observeMutations = require('./observeMutations.js');
|
||||
|
||||
test('Testing observeMutations', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof observeMutations === 'function', 'observeMutations is a Function');
|
||||
//t.deepEqual(observeMutations(args..), 'Expected');
|
||||
//t.equal(observeMutations(args..), 'Expected');
|
||||
//t.false(observeMutations(args..), 'Expected');
|
||||
//t.throws(observeMutations(args..), 'Expected');
|
||||
t.end();
|
||||
});
|
||||
Reference in New Issue
Block a user