From d185ce4aa3a5b46fa7b44445f1b802422bb723b2 Mon Sep 17 00:00:00 2001 From: Roman Hotsiy Date: Tue, 9 Jun 2020 13:41:12 +0300 Subject: [PATCH] chore: remove test --- src/services/__tests__/prism.test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/services/__tests__/prism.test.ts b/src/services/__tests__/prism.test.ts index 75396c7b..3829290b 100644 --- a/src/services/__tests__/prism.test.ts +++ b/src/services/__tests__/prism.test.ts @@ -1,10 +1,6 @@ import { highlight, mapLang } from '../../utils/highlight'; describe('prism.js helpers', () => { - test('mapLang should map "json" to "js"', () => { - expect(mapLang('json')).toBe('js'); - }); - test('mapLang should map to "clike" by default', () => { expect(mapLang('non-existring')).toBe('clike'); });