Add new snippets for expect(...).to testing in Jasmine and Rspec

This commit is contained in:
2014-04-12 11:18:07 +01:00
parent 9af02c0e78
commit 29db45ceeb
3 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
# name: expect(...).toEqual(...)
# key: eb
# --
expect($1).toBe($0)

View File

@@ -0,0 +1,4 @@
# name: expect(...).toEqual(...)
# key: ee
# --
expect($1).toEqual($0)

View File

@@ -0,0 +1,4 @@
# name: expect(...).to eq(...)
# key: ee
# --
expect($1).to eq($0)