Fixed test

This commit is contained in:
Henry 2015-11-17 14:45:10 -08:00
parent 606667eb4d
commit 3a36389815

View File

@ -102,6 +102,8 @@ define(
});
it("provides a fresh initial model each time", function () {
var model = type.getInitialModel();
model.someKey = "some other value"
expect(type.getInitialModel().someKey).toEqual("some value");
});