aboutsummaryrefslogtreecommitdiff
path: root/test/js/import_global_ref.t.js
blob: c90288ee3cfc1cb03a037f845494ab97dd6439d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*---
includes: []
flags: []
paths: [test/js/module/]
---*/

import http from 'http.js';
import jwt  from 'jwt.js';

globalThis.http = http;
globalThis.jwt = jwt;

assert.sameValue(http.check(), "JWT-OK");