diff --git a/snippets/expect.snippet b/snippets/expect.snippet index 858e104..0d5e155 100644 --- a/snippets/expect.snippet +++ b/snippets/expect.snippet @@ -1 +1 @@ -expect( ${1} ).to${2}(); +expect(${1}).to${2}(); diff --git a/snippets/spy.snippet b/snippets/spy.snippet index 6c13f63..61fcab3 100644 --- a/snippets/spy.snippet +++ b/snippets/spy.snippet @@ -1 +1 @@ -spyOn( ${1:object}, '${2:method}' ); +spyOn(${1:object}, '${2:method}');