mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
11 lines
325 B
JavaScript
11 lines
325 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
// common.expectWarning('DeprecationWarning', {
|
|
// DEP0128: /^Invalid 'main' field in '.+main[/\\]package\.json' of 'doesnotexist\.js'\..+module author/
|
|
// });
|
|
|
|
assert.strictEqual(require('../fixtures/packages/missing-main').ok, 'ok');
|