From 2cc14f9df7f2e110f2253d1aa6e6d626779f7383 Mon Sep 17 00:00:00 2001 From: Shaik Saif Ali Date: Thu, 17 Jun 2021 17:04:49 +0530 Subject: [PATCH] test fails with doctype This might have missed it in hindsight, but the test fails as someone follows the tutorials. Changing it from `` to `` solves the problem --- docs/docs/create-a-practice-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/create-a-practice-tutorial.md b/docs/docs/create-a-practice-tutorial.md index 05c2b31e..16154fd4 100644 --- a/docs/docs/create-a-practice-tutorial.md +++ b/docs/docs/create-a-practice-tutorial.md @@ -285,7 +285,7 @@ describe('index.html', () => { }) it('should have a DOCTYPE', () => { - assert(//i.test(indexFile)) + assert(//i.test(indexFile)) }) }) ```