From cb2c2ff9ea8cd04a398e930d9d6c1cd86895ef17 Mon Sep 17 00:00:00 2001 From: Doug Puchalski Date: Fri, 4 Sep 2015 14:40:59 -0700 Subject: [PATCH] jQuery syntax $ was omitted --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6252cca..4bf13071 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ test('it renders', function(assert) { {{ x-foo value=value action="result" }} `); - assert.equal(this.('div>.value').text(), 'cat', 'The component shows the correct value'); + assert.equal(this.$('div>.value').text(), 'cat', 'The component shows the correct value'); this.$('button').click(); });