From 5ca0b0fff5f58b8af0cdca6b196e840c1bf92edf Mon Sep 17 00:00:00 2001 From: Barrie Treloar Date: Mon, 15 Jul 2019 15:28:38 +0930 Subject: [PATCH] doc(testing/components): Custom Attribute remove src/ prefix from .withResources Fixes aurelia/documentation#441 --- current/en-us/9. testing/1. components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/current/en-us/9. testing/1. components.md b/current/en-us/9. testing/1. components.md index 21c0f55..043ac5c 100644 --- a/current/en-us/9. testing/1. components.md +++ b/current/en-us/9. testing/1. components.md @@ -179,7 +179,7 @@ describe('MyAttribute', () => { beforeEach(() => { component = StageComponent - .withResources('src/my-attribute') + .withResources('my-attribute') .inView('
Bob
') .boundTo({ color: 'blue' }); });