Skip to content

Commit

Permalink
test: skip if memory is too low
Browse files Browse the repository at this point in the history
Signed-off-by: Darshan Sen <raisinten@gmail.com>
  • Loading branch information
RaisinTen committed Apr 14, 2022
1 parent dc19d30 commit ff85235
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/pummel/test-repl-empty-maybelocal-crash.js
@@ -1,8 +1,8 @@
'use strict';
const common = require('../common');

if (common.isPi) {
common.skip('Too slow for Raspberry Pi devices');
if (common.enoughTestMem) {
common.skip('memory-intensive test');
}

// The process should not crash when the REPL receives the string, 'ss'.
Expand Down

0 comments on commit ff85235

Please sign in to comment.