From a889acda08a76bc1e164dd2e005ffca2d5c9210c Mon Sep 17 00:00:00 2001 From: tshino Date: Mon, 4 Apr 2022 00:28:25 +0900 Subject: [PATCH] Enable find regression test for #33 --- test/suite/playback_find.test.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/suite/playback_find.test.js b/test/suite/playback_find.test.js index ab886f0c..8f579039 100644 --- a/test/suite/playback_find.test.js +++ b/test/suite/playback_find.test.js @@ -1,7 +1,4 @@ 'use strict'; -// This regression test should fail until #33 is fixed. -// First, we need to pass this test. -/* const assert = require('assert'); const vscode = require('vscode'); const util = require('../../src/util.js'); @@ -45,6 +42,7 @@ describe('Recording and Playback: Find', () => { textEditor = await TestUtil.setupTextEditor({ content: '', language: 'javascript' }); }); + // This is a regression test for https://github.com/tshino/vscode-kb-macro/issues/33 describe('Find', () => { beforeEach(async () => { await TestUtil.resetDocument(textEditor, ( @@ -88,4 +86,3 @@ describe('Recording and Playback: Find', () => { }); }); }); -*/