refactor: move test-plugin to integration suite

This seems more appropriate given this tests how a plugin might work
within code-server.
This commit is contained in:
Joe Previte
2022-09-17 10:33:03 -07:00
parent a0944006e7
commit bc02005dc0
13 changed files with 22 additions and 19 deletions

View File

@@ -0,0 +1,16 @@
{
"private": true,
"name": "test-plugin",
"version": "1.0.0",
"engines": {
"code-server": "^4.7.0"
},
"main": "out/index.js",
"devDependencies": {
"@types/express": "^4.17.8",
"typescript": "^4.0.5"
},
"scripts": {
"build": "tsc"
}
}