@sprucelabs/heartwood-view-controllers 112.1.6 → 112.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -925,7 +925,7 @@ const vcAssert = {
|
|
|
925
925
|
vc = vc.getSkillViewVc();
|
|
926
926
|
assert.isTruthy(vc, `Your LockScreen is not rendering a skill view! Try 'this.renderLockScreen(lockSvc.render())'`);
|
|
927
927
|
}
|
|
928
|
-
assert.isTruthy(vc, `
|
|
928
|
+
assert.isTruthy(vc, `The view you sent me is missing a controller. It may help to check your render method to ensure you're properly returning a controller. Here are a few examples of how to do this:
|
|
929
929
|
|
|
930
930
|
1. Rendering a SubView:
|
|
931
931
|
|
|
@@ -877,7 +877,7 @@ const vcAssert = {
|
|
|
877
877
|
vc = vc.getSkillViewVc();
|
|
878
878
|
test_utils_1.assert.isTruthy(vc, `Your LockScreen is not rendering a skill view! Try 'this.renderLockScreen(lockSvc.render())'`);
|
|
879
879
|
}
|
|
880
|
-
test_utils_1.assert.isTruthy(vc, `
|
|
880
|
+
test_utils_1.assert.isTruthy(vc, `The view you sent me is missing a controller. It may help to check your render method to ensure you're properly returning a controller. Here are a few examples of how to do this:
|
|
881
881
|
|
|
882
882
|
1. Rendering a SubView:
|
|
883
883
|
|
package/package.json
CHANGED