xref: /third_party/node/test/parallel/test-require-dot.js (revision 1cb0ef41)
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/test/parallel/
11cb0ef41Sopenharmony_ci'use strict';
21cb0ef41Sopenharmony_cirequire('../common');
31cb0ef41Sopenharmony_ciconst assert = require('assert');
41cb0ef41Sopenharmony_ciconst m = require('module');
51cb0ef41Sopenharmony_ciconst fixtures = require('../common/fixtures');
61cb0ef41Sopenharmony_ci
71cb0ef41Sopenharmony_ciconst a = require(fixtures.path('module-require', 'relative', 'dot.js'));
81cb0ef41Sopenharmony_ciconst b = require(fixtures.path('module-require', 'relative', 'dot-slash.js'));
91cb0ef41Sopenharmony_ci
101cb0ef41Sopenharmony_ciassert.strictEqual(a.value, 42);
111cb0ef41Sopenharmony_ci// require(".") should resolve like require("./")
121cb0ef41Sopenharmony_ciassert.strictEqual(a, b);
131cb0ef41Sopenharmony_ci
141cb0ef41Sopenharmony_ciprocess.env.NODE_PATH = fixtures.path('module-require', 'relative');
151cb0ef41Sopenharmony_cim._initPaths();
161cb0ef41Sopenharmony_ci
171cb0ef41Sopenharmony_ciassert.throws(
181cb0ef41Sopenharmony_ci  () => require('.'),
191cb0ef41Sopenharmony_ci  {
201cb0ef41Sopenharmony_ci    message: /Cannot find module '\.'/,
211cb0ef41Sopenharmony_ci    code: 'MODULE_NOT_FOUND'
221cb0ef41Sopenharmony_ci  }
231cb0ef41Sopenharmony_ci);
24

Indexes created Thu Nov 07 10:32:03 CST 2024