1'use strict'; 2// This test verifies that the WASI module cannot be require()'ed without a 3// CLI flag while it is still experimental. 4require('../common'); 5const assert = require('assert'); 6 7assert.throws(() => { 8 require('wasi'); 9}, /^Error: Cannot find module 'wasi'/); 10