Skip to content

Commit

Permalink
test: fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed Nov 18, 2022
1 parent d0005bb commit 83d5bc0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/template/vscode_spec.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require("plenary.async").tests.add_to_env()
local overseer = require("overseer")
local constants = require("overseer.constants")
local files = require("overseer.files")
local parser = require("overseer.parser")
local vscode = require("overseer.template.vscode")
local problem_matcher = require("overseer.template.vscode.problem_matcher")
Expand Down Expand Up @@ -332,7 +333,7 @@ src/index.ts:3:1 - error TS1435: Unknown keyword or identifier. Did you mean 'im
assert.are.same({
diagnostics = {
{
filename = "src/index.ts",
filename = files.join(task.cwd, "src/index.ts"),
lnum = 3,
col = 1,
type = "E",
Expand Down Expand Up @@ -363,7 +364,7 @@ src/index.ts:3:1 - error TS1435: Unknown keyword or identifier. Did you mean 'im
assert.are.same({
diagnostics = {
{
filename = "src/index.ts",
filename = files.join(task.cwd, "src/index.ts"),
lnum = 3,
col = 1,
type = "E",
Expand Down

0 comments on commit 83d5bc0

Please sign in to comment.