fix(viewFactory): allow empty view cache

This commit is contained in:
Tobias Bosch
2015-04-17 14:37:57 -07:00
parent abda569b55
commit 02997f473a
5 changed files with 9 additions and 17 deletions

View File

@ -66,10 +66,10 @@ export function main() {
return binder;
}
it('should create views', () => {
it('should create views without cache', () => {
var pv = createProtoView();
var vf = createViewFactory({
capacity: 1
capacity: 0
});
expect(vf.getView(pv) instanceof AppView).toBe(true);
});