We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52e5d1a commit 756871bCopy full SHA for 756871b
packages/neovim/.mocharc.js
@@ -5,4 +5,4 @@ module.exports = {
5
extension: ['ts'],
6
spec: ['src/**/*.test.ts'],
7
exit: true
8
-}
+}
packages/neovim/src/testSetup.ts
@@ -2,10 +2,10 @@
2
import { startNvim, stopNvim } from './testUtil';
3
4
export const mochaHooks = {
- beforeAll: async () => {
+ beforeAll() {
startNvim();
},
- afterAll: () => {
+ afterAll() {
9
stopNvim();
10
11
};
packages/neovim/src/utils/buffered.ts
0 commit comments