Tom Willemse
dd9fedf8ff
‘org-roam’ doesn’t seem to work correctly on all the machines that I use ‘org-mode’ on.
11 lines
250 B
Bash
Executable file
11 lines
250 B
Bash
Executable file
#!/usr/bin/env bats
|
|
|
|
@test "Loading org-roam also loads oni-org-roam" {
|
|
run emacs -batch -l package -f package-initialize \
|
|
-l org-roam \
|
|
-eval "(prin1 (featurep 'oni-org-roam))"
|
|
|
|
echo "$output"
|
|
|
|
[[ "$output" == *"t" ]]
|
|
}
|