mirror of
https://github.com/amark/gun.git
synced 2025-06-08 15:16:42 +00:00
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
module.exports=require('../theory')
|
|
('syllabus',function(a){
|
|
describe('arrays',function(){
|
|
it('deps',function(){
|
|
expect(root.ArrayIs).to.be(true);
|
|
expect(a.array_is).to.be(undefined);
|
|
});
|
|
});
|
|
return [1,2,3];
|
|
},['./array_util', './array_is']); |