@@ -123,7 +123,9 @@ describe("local", () => {
123123
124124 describe ( "Execution" , ( ) => {
125125 beforeAll ( async ( ) => {
126- await ctx . runEask ( "install-deps" , { timeout : 40000 } , avoid11 )
126+ await ctx . runEask ( "install-deps" , { timeout : 40000 } ,
127+ // See https://github.com/emacs-eask/cli/issues/11.
128+ cmp ( await emacsVersion ( ) , "28.1" ) == - 1 )
127129 } ) ;
128130
129131 test ( "eval" , async ( ) => {
@@ -210,7 +212,9 @@ describe("local", () => {
210212 describe ( "Linting" , ( ) => {
211213 // some lint commands may fail if packages are missing
212214 beforeAll ( async ( ) => {
213- await ctx . runEask ( "install-deps" , { timeout : 40000 } , avoid11 )
215+ await ctx . runEask ( "install-deps" , { timeout : 40000 } ,
216+ // See https://github.com/emacs-eask/cli/issues/11.
217+ cmp ( await emacsVersion ( ) , "28.1" ) == - 1 )
214218 } ) ;
215219
216220 it . each ( [
@@ -231,7 +235,9 @@ describe("local", () => {
231235 } ) ;
232236
233237 it ( "lint elint" , async ( ) => {
234- await ctx . runEask ( "lint elisp-lint" , avoid11 ) ;
238+ await ctx . runEask ( "lint elisp-lint" , { } ,
239+ // See https://github.com/emacs-eask/cli/issues/11.
240+ cmp ( await emacsVersion ( ) , "28.1" ) == - 1 ) ;
235241 } ) ;
236242
237243 it ( "lint regexps" , async ( ) => {
0 commit comments