Skip to content
This repository was archived by the owner on Aug 8, 2023. It is now read-only.

Commit 85a3e77

Browse files
committed
use fully qualified name until nodejs/node#41321
1 parent f806c9e commit 85a3e77

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

packages/libraries/testproto/src/t.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
import { suite as internalSuite } from "uvu";
44

5+
// import http from "http"; @see https://github.com/nodejs/node/issues/41320
56
import chaiAsPromised from "chai-as-promised";
67
import chaiExclude from "chai-exclude";
78
import chaiNock from "chai-nock";
8-
// import http from "http"; @see https://github.com/nodejs/node/issues/41320
99
import internalChai from "chai";
1010
import internalNock from "nock";
1111
import internalSinon from "sinon";
1212

1313
internalChai.config.includeStack = true;
1414
internalChai.config.showDiff = true;
15-
internalChai.truncateThreshold = 0; // show everything
15+
internalChai.config.truncateThreshold = 0; // show everything
1616

1717
internalSinon.assert.expose(internalChai.assert, { prefix: "" }); // @see https://github.com/domenic/sinon-chai
1818
internalChai.use(chaiNock); // https://github.com/chrisandrews7/chai-nock#readme

packages/libraries/testproto/src/unit.test.mjs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
// @FlowTODO
2-
31
// @see https://github.com/lukeed/uvu/blob/master/docs/cli.md
42
// @see https://github.com/lukeed/uvu/blob/master/docs/api.uvu.md
5-
import * as t from "./t";
3+
import * as t from "@nodeproto/testproto";
64

75
const { assert } = t;
86

0 commit comments

Comments
 (0)