Skip to content

Commit

Permalink
Create color_all_in_one_spec.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
linrongbin16 authored Nov 19, 2023
1 parent eff402b commit a861d48
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lua/test/color_all_in_one_spec.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
local cwd = vim.fn.getcwd()

describe("color-all-in-one", function()
local assert_eq = assert.is_equal
local assert_true = assert.is_true
local assert_false = assert.is_false

before_each(function()
vim.api.nvim_command("cd " .. cwd)
end)

local caio = require('color-all-in-one')
describe("[setup]", function()
it("setup", function()
caio.setup()
end)
end)
end)

0 comments on commit a861d48

Please sign in to comment.