From 11c74a502580720f1d8df93593272a92485d54f2 Mon Sep 17 00:00:00 2001 From: darkfever Date: Fri, 9 Jul 2021 10:23:40 +0600 Subject: [PATCH] test js --- koans/AboutExpects.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koans/AboutExpects.js b/koans/AboutExpects.js index 7d1a827cb..4ae08cef4 100644 --- a/koans/AboutExpects.js +++ b/koans/AboutExpects.js @@ -3,8 +3,8 @@ describe('About Expects', function() { // We shall contemplate truth by testing reality, via spec expectations. it('should expect true', function() { - // Your journey begins here: Replace the word false with true - expect(false).toBeTruthy(); + // Your journey begins here: Replace the word false with true + expect(true).toBeTruthy(); }); // To understand reality, we must compare our expectations against reality.