-
-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* integrate with neovim with native messaging. * settle down the public APIs for setting snippets and document them. * improve the build process with webpack. * add unit tests. * remove the Mermaid diagram generator, which is unnecessary for the extension.
- Loading branch information
Showing
391 changed files
with
10,168 additions
and
112,181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
node_modules/ | ||
dist/ | ||
coverage/ | ||
.DS_Store | ||
.vscode/ | ||
package-lock.json | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"presets": [["@babel/preset-env", { "modules": "commonjs" }], "@babel/preset-typescript"], | ||
"plugins": [ | ||
"@babel/plugin-transform-runtime", | ||
[ | ||
"module-resolver", | ||
{ | ||
"root": ["."], | ||
"alias": { | ||
"src": "./src" | ||
} | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const { toMatchImageSnapshot } = require('jest-image-snapshot'); | ||
|
||
expect.extend({ toMatchImageSnapshot }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { setupTestServer } from './testServer'; | ||
|
||
const globalSetup = async () => { | ||
await setupTestServer(); | ||
}; | ||
|
||
export default globalSetup; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { teardownTestServer } from './testServer'; | ||
|
||
const globalTeardown = async () => { | ||
await teardownTestServer(); | ||
}; | ||
|
||
export default globalTeardown; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const { spawn } = require('child_process'); | ||
|
||
export const setupTestServer = async () => { | ||
spawn('npm', [ | ||
'run', | ||
'build:testdata' | ||
]); | ||
}; | ||
|
||
export const teardownTestServer = async () => { | ||
}; |
Oops, something went wrong.