We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa74e39 commit 5f10fdaCopy full SHA for 5f10fda
1 file changed
packages/node-resolve/test/test.mjs
@@ -745,13 +745,13 @@ test('allow other plugins to take over resolution', async (t) => {
745
});
746
747
test('error message for invalid entry', async (t) => {
748
- const error = await t.throwsAsync(() => rollup({
749
- input: "",
750
- onwarn: failOnWarn(t),
751
- plugins: [
752
- nodeResolve()
753
- ]
754
- }));
+ const error = await t.throwsAsync(() =>
+ rollup({
+ input: '',
+ onwarn: failOnWarn(t),
+ plugins: [nodeResolve()]
+ })
+ );
755
756
t.is(error.message, `Could not resolve entry module "".`);
757
0 commit comments