Use snippet variable in template (#1729)

This commit is contained in:
Bryan Phelps 2018-03-07 08:51:14 -08:00 committed by GitHub
parent 3935c18694
commit 0ab079d328
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,12 +1,13 @@
/**
* ${0}.ts
* ${TM_FILENAME_BASE}.ts
*/
import * as assert from "assert"
describe("${0}", () => {
describe("${TM_FILENAME_BASE}", () => {
it("${1:tests}", async () => {
${2:assert.ok(false, "fail")}
${0}
})
})