Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
benlubas committed Oct 20, 2022
1 parent bc47f68 commit a5b924a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/init_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ describe("build_spec", function()
assert.is.truthy(spec.context.results_path)
end)

async.it('builds command for nested namespace', function()
async.it("builds command for nested namespace", function()
local positions = plugin.discover_positions("./spec/nestedDescribe.test.ts"):to_list()

local tree = Tree.from_list(positions, function(pos)
Expand All @@ -179,7 +179,7 @@ describe("build_spec", function()
assert.is.truthy(spec.context.results_path)
end)

async.it('builds correct command for test name with \' ', function()
async.it("builds correct command for test name with ' ", function()
local positions = plugin.discover_positions("./spec/nestedDescribe.test.ts"):to_list()

local tree = Tree.from_list(positions, function(pos)
Expand All @@ -197,6 +197,5 @@ describe("build_spec", function()
assert.contains(command, "./spec/nestedDescribe.test.ts")
assert.is.truthy(spec.context.file)
assert.is.truthy(spec.context.results_path)

end)
end)

0 comments on commit a5b924a

Please sign in to comment.