This repository was archived by the owner on Aug 8, 2023. It is now read-only.
File tree 2 files changed +3
-5
lines changed
packages/libraries/testproto/src
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import { suite as internalSuite } from "uvu" ;
4
4
5
+ // import http from "http"; @see https://github.com/nodejs/node/issues/41320
5
6
import chaiAsPromised from "chai-as-promised" ;
6
7
import chaiExclude from "chai-exclude" ;
7
8
import chaiNock from "chai-nock" ;
8
- // import http from "http"; @see https://github.com/nodejs/node/issues/41320
9
9
import internalChai from "chai" ;
10
10
import internalNock from "nock" ;
11
11
import internalSinon from "sinon" ;
12
12
13
13
internalChai . config . includeStack = true ;
14
14
internalChai . config . showDiff = true ;
15
- internalChai . truncateThreshold = 0 ; // show everything
15
+ internalChai . config . truncateThreshold = 0 ; // show everything
16
16
17
17
internalSinon . assert . expose ( internalChai . assert , { prefix : "" } ) ; // @see https://github.com/domenic/sinon-chai
18
18
internalChai . use ( chaiNock ) ; // https://github.com/chrisandrews7/chai-nock#readme
Original file line number Diff line number Diff line change 1
- // @FlowTODO
2
-
3
1
// @see https://github.com/lukeed/uvu/blob/master/docs/cli.md
4
2
// @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 " ;
6
4
7
5
const { assert } = t ;
8
6
You can’t perform that action at this time.
0 commit comments