Merge pull request #1 from ryanxcharles/feature/wallet-creation
wrap getNumber test in another describe
This commit is contained in:
commit
483555154a
1 changed files with 6 additions and 4 deletions
|
|
@ -64,10 +64,12 @@ describe("Unit: Controllers", function() {
|
||||||
});
|
});
|
||||||
}));
|
}));
|
||||||
|
|
||||||
it('should return an array of n undefined elements', function() {
|
describe('#getNumber', function() {
|
||||||
var n = 5;
|
it('should return an array of n undefined elements', function() {
|
||||||
var array = scope.getNumber(n);
|
var n = 5;
|
||||||
expect(array.length).equal(n);
|
var array = scope.getNumber(n);
|
||||||
|
expect(array.length).equal(n);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue