We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a164d8 commit 4f6c954Copy full SHA for 4f6c954
1 file changed
exercises/01.expressions-and-output/05.solution.template-literals/index.test.ts
@@ -26,8 +26,9 @@ await test('greeting is exported', () => {
26
27
await test('should have Hello, TypeScript! greeting', () => {
28
assert.ok(
29
- solution.greeting.toLowerCase().includes('hello typescript'),
30
- '🚨 greeting should include "Hello TypeScript"',
+ solution.greeting.toLowerCase().includes('hello') &&
+ solution.greeting.toLowerCase().includes('typescript'),
31
+ '🚨 greeting should include "Hello" and "TypeScript"',
32
)
33
})
34
0 commit comments