enc: add vitest config

This commit is contained in:
pojok code 2025-06-27 15:52:23 +07:00
parent bf0a8b2f9b
commit 1167f053e4
3 changed files with 7 additions and 235 deletions

View file

@ -37,8 +37,9 @@
"neotest-jest": { "branch": "main", "commit": "dd82016c01704d9bbd5188749fe0586b3b620693" },
"neotest-plenary": { "branch": "master", "commit": "3523adcf9ffaad1911960c5813b0136c1b63a2ec" },
"neotest-vim-test": { "branch": "master", "commit": "75c4228882ae4883b11bfce9b8383e637eb44192" },
"neotest-vitest": { "branch": "main", "commit": "a6099e1fb55a2c2851da3dd0f4d510af9a234c92" },
"noice.nvim": { "branch": "main", "commit": "0427460c2d7f673ad60eb02b35f5e9926cf67c59" },
"npm-runner.nvim": { "branch": "main", "commit": "4acc407e07e16eb42e356b10bc17886b21744606" },
"npm-runner.nvim": { "branch": "main", "commit": "06d303e0a8ba384cd5fc35de6ba62d3500c99148" },
"nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" },
"nvim-autopairs": { "branch": "master", "commit": "2647cce4cb64fb35c212146663384e05ae126bdf" },
"nvim-cmp": { "branch": "main", "commit": "b5311ab3ed9c846b585c0c15b7559be131ec4be9" },
@ -50,7 +51,7 @@
"nvim-dap-vscode-js": { "branch": "main", "commit": "03bd29672d7fab5e515fc8469b7d07cc5994bbf6" },
"nvim-lint": { "branch": "master", "commit": "2b0039b8be9583704591a13129c600891ac2c596" },
"nvim-lspconfig": { "branch": "master", "commit": "6bba673aa8993eceec233be17b42ddfb9540794b" },
"nvim-material-icon": { "branch": "main", "commit": "149cdb10d91491021c47fe17a0d7a8b8bf45784e" },
"nvim-material-icon": { "branch": "main", "commit": "c25a4e56be2f846dfdf8f30b980adc17f219d019" },
"nvim-navic": { "branch": "master", "commit": "f887d794a0f4594882814d7780980a949200a238" },
"nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" },
"nvim-notify": { "branch": "master", "commit": "a22f5d7ac511c2df2fd3290a9f04c48d5a822e2e" },

View file

@ -294,6 +294,7 @@ func %s() {
{
"nvim-neotest/neotest",
event = "VeryLazy",
ft = "go",
dependencies = {
"nvim-lua/plenary.nvim",
"antoinemadec/FixCursorHold.nvim",

View file

@ -30,7 +30,9 @@ local M = {
"antoinemadec/FixCursorHold.nvim",
"nvim-neotest/neotest-jest",
"nvim-neotest/nvim-nio",
"marilari88/neotest-vitest",
},
ft = { "javascript", "typescript", "javascriptreact", "typescriptreact" },
opts = {
adapters = {
["neotest-jest"] = {
@ -50,6 +52,7 @@ local M = {
return vim.fn.getcwd()
end,
},
["neotest-vitest"] = {},
},
status = { virtual_text = true },
output = { open_on_run = true },
@ -94,25 +97,6 @@ local M = {
end
require("neotest").setup(opts)
-- local command = pcode.npm_commad
-- or {
-- dev = {
-- start = "NpmRunDev",
-- stop = "NpmStopDev",
-- cmd = "npm run dev",
-- },
-- prod = {
-- start = "NpmStart",
-- stop = "NpmStop",
-- cmd = "npm start",
-- },
-- }
-- require("pcode.user.npmrun").setup(command, {
-- show_mapping = "<leader>nm",
-- hide_mapping = "<leader>nh",
-- width = 70,
-- height = 20,
-- })
end,
-- stylua: ignore
keys = {
@ -159,220 +143,6 @@ local M = {
},
config = function(_, opts)
require("npm-runner").setup(opts.command, opts.opt)
-- js new project
local function js_new_project()
local function create_notif(message, level)
local notif_ok, notify = pcall(require, "notify")
if notif_ok then
notify(message, level)
else
print(message)
end
end
local function get_user_input(prompt, default_value)
vim.fn.inputsave()
local result = vim.fn.input(prompt, default_value)
vim.fn.inputrestore()
if result == "" then
create_notif("Input canceled.", "info")
return nil, true
end
return result, false
end
-- Input nama project
local project_name, canceled = get_user_input("Enter project name: ", "my-js-app")
if canceled then
return
end
-- Input file entry point (bisa src/index.js, index.js, src/main/index.js, dsb)
local file_path_input, canceled = get_user_input(
"Enter entry file name \n(\nindex.js, \nsrc/index.js, \nsrc/main/index.js\n): ",
"src/index.js"
)
if canceled then
return
end
-- Input nama function utama
local function_name, canceled = get_user_input("Enter main function name: ", "main")
if canceled then
return
end
local cwd = vim.fn.getcwd()
local project_path = cwd .. "/" .. project_name
if vim.fn.isdirectory(project_path) == 1 then
create_notif("Project directory already exists: " .. project_path, "error")
return
end
-- Dapatkan folder dan filename dari file_path_input
local folder_part = file_path_input:match("(.+)/[^/]+%.js$") or "" -- e.g. "src/main" or ""
local file_name_part = file_path_input:match("([^/]+)%.js$") -- e.g. "index"
-- Buat project folder dan subfolder jika ada
local full_folder_path = (folder_part ~= "") and (project_path .. "/" .. folder_part) or project_path
vim.fn.system(string.format("mkdir -p '%s'", full_folder_path))
-- path file entry point absolut
local entry_file = string.format("%s/%s.js", full_folder_path, file_name_part)
-- Buat package.json dengan "main" dan scripts dinamis
local package_json = string.format(
[[
{
"name": "%s",
"version": "1.0.0",
"main": "%s",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node %s",
"dev": "nodemon %s"
},
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.1.0"
}
}
]],
project_name,
file_path_input,
file_path_input,
file_path_input
)
local package_json_path = project_path .. "/package.json"
local pkg_file = io.open(package_json_path, "w")
if pkg_file then
pkg_file:write(package_json)
pkg_file:close()
end
-- Tambahkan generate jsconfig.json
local jsconfig = [[
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules"],
"include": ["**/*.js"]
}
]]
local jsconfig_path = project_path .. "/jsconfig.json"
local jsconfig_file = io.open(jsconfig_path, "w")
if jsconfig_file then
jsconfig_file:write(jsconfig)
jsconfig_file:close()
end
-- Template kode JS
local js_code = string.format(
[[
function %s() {
}
%s();
]],
function_name,
function_name
)
local file = io.open(entry_file, "w")
if file then
file:write(js_code)
file:close()
create_notif("JavaScript project created at " .. project_path, "info")
vim.cmd("cd " .. project_path)
-- Jalankan npm install (async, biar tidak blok nvim)
vim.fn.jobstart("npm install", {
cwd = project_path,
detach = false,
on_stdout = function(_, data)
if data and type(data) == "table" then
local msg = table.concat(
vim.tbl_filter(function(line)
return line and line ~= ""
end, data),
"\n"
)
if msg ~= "" then
create_notif("npm install: " .. msg, "info")
end
end
end,
on_stderr = function(_, data)
if data and type(data) == "table" then
local msg = table.concat(
vim.tbl_filter(function(line)
return line and line ~= ""
end, data),
"\n"
)
if msg ~= "" then
create_notif("npm install error: " .. msg, "error")
end
end
end,
on_exit = function(_, code)
if code == 0 then
create_notif("npm install finished", "info")
else
create_notif("npm install failed", "error")
end
end,
})
-- Jika ada NvimTreeOpen, jalankan lalu fokus ke file JS
if vim.fn.exists(":NvimTreeOpen") == 2 then
vim.cmd("NvimTreeOpen")
vim.schedule(function()
vim.cmd("edit " .. entry_file)
local lines = {}
for line in js_code:gmatch("([^\n]*)\n?") do
table.insert(lines, line)
end
local func_line = 1
for i, line in ipairs(lines) do
if line:find("function%s+" .. function_name .. "%s*%(") then
func_line = i
break
end
end
local target_line = func_line + 1
vim.api.nvim_win_set_cursor(0, { target_line, 2 })
vim.cmd("startinsert")
end)
else
vim.cmd("edit " .. entry_file)
local lines = {}
for line in js_code:gmatch("([^\n]*)\n?") do
table.insert(lines, line)
end
local func_line = 1
for i, line in ipairs(lines) do
if line:find("function%s+" .. function_name .. "%s*%(") then
func_line = i
break
end
end
local target_line = func_line + 1
vim.api.nvim_win_set_cursor(0, { target_line, 2 })
vim.cmd("startinsert")
end
else
create_notif("Failed to create file: " .. entry_file, "error")
end
end
vim.api.nvim_create_user_command("JsNewProject", js_new_project, {})
end,
},
{