|
6 | 6 | "import { TestBed } from '@angular/core/testing';",
|
7 | 7 | "import { Spy, provideAutoSpy } from '${1|jasmine,jest|}-auto-spies';",
|
8 | 8 | "",
|
9 |
| - "describe('$2', () => {", |
| 9 | + "describe(`$2`, () => {", |
10 | 10 | " let componentUnderTest: $2;",
|
11 | 11 | "",
|
12 | 12 | " let actualResult: any;",
|
|
22 | 22 | "",
|
23 | 23 | " });",
|
24 | 24 | "",
|
25 |
| - " describe('METHOD: $3', () => {", |
| 25 | + " describe(`METHOD: $3`, () => {", |
26 | 26 | "",
|
27 | 27 | " When(() => {",
|
28 | 28 | " componentUnderTest.$3();",
|
29 | 29 | " });",
|
30 | 30 | "",
|
31 |
| - " describe('GIVEN $4', () => {", |
| 31 | + " describe(`GIVEN $4`, () => {", |
32 | 32 | " Given(() => {",
|
33 | 33 | " // $4",
|
34 | 34 | " $6",
|
35 | 35 | " });",
|
36 |
| - " Then('$5', () => {", |
| 36 | + " Then(`$5`, () => {", |
37 | 37 | " // $5",
|
38 | 38 | " });",
|
39 | 39 | " });",
|
|
50 | 50 | "import { TestBed } from '@angular/core/testing';",
|
51 | 51 | "import { Spy, provideAutoSpy } from '${1|jasmine,jest|}-auto-spies';",
|
52 | 52 | "",
|
53 |
| - "describe('$2', () => {", |
| 53 | + "describe(`$2`, () => {", |
54 | 54 | " let serviceUnderTest: $2;",
|
55 | 55 | "",
|
56 | 56 | " let actualResult: any;",
|
|
66 | 66 | "",
|
67 | 67 | " });",
|
68 | 68 | "",
|
69 |
| - " describe('METHOD: $3', () => {", |
| 69 | + " describe(`METHOD: $3`, () => {", |
70 | 70 | "",
|
71 | 71 | " When(() => {",
|
72 | 72 | " serviceUnderTest.$3();",
|
73 | 73 | " });",
|
74 | 74 | "",
|
75 |
| - " describe('GIVEN $4', () => {", |
| 75 | + " describe(`GIVEN $4`, () => {", |
76 | 76 | " Given(() => {",
|
77 | 77 | " // $4",
|
78 | 78 | " $6",
|
79 | 79 | " });",
|
80 |
| - " Then('$5',() => {", |
| 80 | + " Then(`$5`,() => {", |
81 | 81 | " // $5",
|
82 | 82 | " });",
|
83 | 83 | " });",
|
|
94 | 94 | "import { TestBed } from '@angular/core/testing';",
|
95 | 95 | "import { Spy, provideAutoSpy } from '${1|jasmine,jest|}-auto-spies';",
|
96 | 96 | "",
|
97 |
| - "describe('$2', () => {", |
| 97 | + "describe(`$2`, () => {", |
98 | 98 | " let ${3|component,service,directive,pipe|}UnderTest: $2;",
|
99 | 99 | "",
|
100 | 100 | " let actualResult: any;",
|
|
110 | 110 | "",
|
111 | 111 | " });",
|
112 | 112 | "",
|
113 |
| - " describe('METHOD: $4', () => {", |
| 113 | + " describe(`METHOD: $4`, () => {", |
114 | 114 | " $5",
|
115 | 115 | " });",
|
116 | 116 | "});",
|
|
0 commit comments