We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d753d09 commit 57ca6fbCopy full SHA for 57ca6fb
1 file changed
tests/tests/bau/gradle.lua
@@ -3,9 +3,15 @@
3
4
local ms = 1000 -- wait time
5
local bau = require("compiler.bau.gradle")
6
-local example = vim.fn.stdpath "data" .. "/lazy/compiler.nvim/tests/code samples/bau/gradle"
7
8
-- Run gradlew > build.gradlew.kts > build.gradlew (first occurence by priority)
+local example = vim.fn.stdpath "data" .. "/lazy/compiler.nvim/tests/code samples/bau/gradle/parse-file"
9
vim.api.nvim_set_current_dir(example)
10
bau.action("hello_world")
11
vim.wait(ms)
12
+
13
+-- Run gradlew > build.gradlew.kts > build.gradlew (first occurence by priority)
14
+local example = vim.fn.stdpath "data" .. "/lazy/compiler.nvim/tests/code samples/bau/gradle/parse-cmd"
15
+vim.api.nvim_set_current_dir(example)
16
+bau.action("bootRun")
17
+vim.wait(ms)
0 commit comments