Skip to content

Commit

Permalink
Add pre-condition check for completeness.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Oct 29, 2015
1 parent 01273e9 commit 89304dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/unit/templatizer.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
test('outer & inner props conflict', function() {
host.$.templatizer.go();
assert.ok(childA);
assert.equal(childA.conflict, 'bar');
host.set('outerInnerConflict.prop', 'foo');
assert.equal(childA.conflict, 'bar');
});
Expand Down Expand Up @@ -244,6 +245,7 @@
test('outer & inner props conflict', function() {
host.$.templatizer.go();
assert.ok(childA);
assert.equal(childA.conflict, 'bar');
host.set('outerInnerConflict.prop', 'foo');
assert.equal(childA.conflict, 'bar');
});
Expand Down

0 comments on commit 89304dc

Please sign in to comment.