mirror of
https://github.com/amark/gun.git
synced 2025-06-08 15:16:42 +00:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
module.exports=require('../theory')
|
|
('sub',function(a){
|
|
describe('sub',function(){
|
|
it('a',function(){
|
|
expect(root.Add(2, a.one)).to.be(3);
|
|
});
|
|
});
|
|
return a.one;
|
|
},[
|
|
'./one'
|
|
,'./sub/c'
|
|
]); |