From ea837986c3b9c61e3bfcdfdb81457755860ae06e Mon Sep 17 00:00:00 2001 From: chee Date: Tue, 29 Jan 2019 11:54:26 +0000 Subject: [PATCH] Rename test from gfm to polar-bear --- ...-plugin-gfm-test.js => turndown-plugin-polar-bear-test.js} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename test/{turndown-plugin-gfm-test.js => turndown-plugin-polar-bear-test.js} (73%) diff --git a/test/turndown-plugin-gfm-test.js b/test/turndown-plugin-polar-bear-test.js similarity index 73% rename from test/turndown-plugin-gfm-test.js rename to test/turndown-plugin-polar-bear-test.js index 3a6cdb4..9117e21 100644 --- a/test/turndown-plugin-gfm-test.js +++ b/test/turndown-plugin-polar-bear-test.js @@ -1,12 +1,12 @@ var Attendant = require('turndown-attendant') var TurndownService = require('turndown') -var gfm = require('../lib/turndown-plugin-gfm.cjs').gfm +var bear = require('../lib/turndown-plugin-polar-bear.cjs').bear var attendant = new Attendant({ file: __dirname + '/index.html', TurndownService: TurndownService, beforeEach: function (turndownService) { - turndownService.use(gfm) + turndownService.use(bear) } })