Skip to content

Commit 8476d84

Browse files
committed
test: split elisp lint
1 parent 3837eaf commit 8476d84

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

test/jest/local.test.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ describe("local", () => {
213213
"lint checkdoc",
214214
"lint declare",
215215
"lint elint",
216-
"lint elisp-lint",
217216
"lint indent",
218217
"lint keywords",
219218
"lint license",
@@ -222,17 +221,21 @@ describe("local", () => {
222221
await ctx.runEask(cmd);
223222
});
224223

224+
// XXX: Elsa is not stable, ignore it for now
225+
test.skip("lint elsa", async () => {
226+
await ctx.runEask("lint elsa");
227+
});
228+
229+
it("lint elint", async () => {
230+
await ctx.runEask("lint elisp-lint", avoid11);
231+
});
232+
225233
it("lint regexps", async () => {
226234
if ((await emacsVersion()) >= "27.1") {
227235
await ctx.runEask("lint regexps");
228236
}
229237
});
230238

231-
// XXX: Elsa is not stable, ignore it for now
232-
test.skip("lint elsa", async () => {
233-
await ctx.runEask("lint elsa");
234-
});
235-
236239
it("lint org *.org", async () => {
237240
await ctx.runEask("lint org *.org");
238241
});

0 commit comments

Comments
 (0)