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 8d03f0d commit 08be403Copy full SHA for 08be403
script/test
@@ -0,0 +1,14 @@
1
+#!/usr/bin/env bash
2
+
3
+set -euo pipefail
4
5
+here=$(cd "$(dirname "$BASH_SOURCE")"; pwd)
6
+PROJECT_ROOT=$(cd "$here/.."; pwd)
7
8
+(
9
+ cd "$PROJECT_ROOT"
10
+ cask emacs --batch \
11
+ -l ert \
12
+ -l tree-sitter-langs-tests.el \
13
+ -f ert-run-tests-batch-and-exit
14
+)
script/test.ps1
@@ -0,0 +1,9 @@
+$here = $PSScriptRoot
+$project_root = (Get-Item $here).Parent.FullName
+Push-Location $project_root
+cask emacs --batch `
+ -l ert `
+ -l tree-sitter-langs-tests.el `
+Pop-Location
0 commit comments