fix(ci): format tests

This commit is contained in:
Barrett Ruth 2025-09-18 22:45:05 -04:00
parent 6673713eb1
commit 62fda4490c
10 changed files with 136 additions and 260 deletions

View file

@ -6,46 +6,34 @@ describe('cp.snippets', function()
end)
describe('snippet loading', function()
it('loads default snippets correctly', function()
end)
it('loads default snippets correctly', function() end)
it('loads user snippets from config', function()
end)
it('loads user snippets from config', function() end)
it('handles missing snippet files gracefully', function()
end)
it('handles missing snippet files gracefully', function() end)
end)
describe('snippet expansion', function()
it('expands basic templates correctly', function()
end)
it('expands basic templates correctly', function() end)
it('handles language-specific snippets', function()
end)
it('handles language-specific snippets', function() end)
it('processes snippet placeholders', function()
end)
it('processes snippet placeholders', function() end)
end)
describe('template generation', function()
it('generates cpp templates', function()
end)
it('generates cpp templates', function() end)
it('generates python templates', function()
end)
it('generates python templates', function() end)
it('applies contest-specific templates', function()
end)
it('applies contest-specific templates', function() end)
end)
describe('buffer integration', function()
it('inserts snippets into current buffer', function()
end)
it('inserts snippets into current buffer', function() end)
it('positions cursor correctly after expansion', function()
end)
it('positions cursor correctly after expansion', function() end)
it('handles multiple snippet insertions', function()
end)
it('handles multiple snippet insertions', function() end)
end)
end)
end)