Skip to content

Commit

Permalink
refactor: drop redundant buffered.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
gjf7 committed Oct 19, 2024
1 parent 52e5d1a commit 9d6c368
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 64 deletions.
2 changes: 1 addition & 1 deletion packages/neovim/.mocharc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ module.exports = {
extension: ['ts'],
spec: ['src/**/*.test.ts'],
exit: true
}
}
4 changes: 2 additions & 2 deletions packages/neovim/src/testSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
import { startNvim, stopNvim } from './testUtil';

export const mochaHooks = {
beforeAll: async () => {
beforeAll() {
startNvim();
},
afterAll: () => {
afterAll() {
stopNvim();
},
};
61 changes: 0 additions & 61 deletions packages/neovim/src/utils/buffered.ts

This file was deleted.

0 comments on commit 9d6c368

Please sign in to comment.