File tree Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 1
1
export * as pretty_benching from "https://deno.land/x/pretty_benching@v0.3.3/mod.ts" ;
2
- export * from "https://denopkg.com/crewdevio/Trex@proxy/proxy/files/testing.ts" ;
3
- export * as colors from "https://deno.land/std@0.113.0/fmt/colors.ts" ;
2
+ export * as colors from "https://deno.land/std@0.140.0/fmt/colors.ts" ;
3
+ export * as asserts from "https://deno.land/std@0.87.0/testing/asserts.ts" ;
4
+ export * as bench from "https://deno.land/std@0.87.0/testing/bench.ts" ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"scripts" : {
3
- "test" : " deno test -A --unstable --import-map=./import_map.json " ,
3
+ "test" : " deno test -A --unstable" ,
4
4
"log" : " trex exec ghlog crewdevio/merlin"
5
5
}
6
6
}
Original file line number Diff line number Diff line change 6
6
*/
7
7
8
8
import type { Thresholds , Bench } from "./types.ts" ;
9
- import { pretty_benching } from "../deps.ts" ;
10
- import { colors } from "../deps.ts" ;
11
- import { bench } from "../deps.ts" ;
9
+ import { pretty_benching , colors , bench } from "../deps.ts" ;
12
10
13
11
const { prettyBenchmarkProgress, prettyBenchmarkResult } = pretty_benching ;
14
12
@@ -94,7 +92,7 @@ export class Maven {
94
92
prettyBenchmarkProgress ( {
95
93
indicators : Maven . runIndicator ,
96
94
thresholds : Maven . thresholds ,
97
- } ) ,
95
+ } )
98
96
) ;
99
97
}
100
98
Original file line number Diff line number Diff line change 5
5
* LICENSE file in the root directory of this source tree.
6
6
*/
7
7
8
- import { asserts } from "../deps.ts" ;
8
+ import { asserts , colors } from "../deps.ts" ;
9
9
import type {
10
10
ArrayContains ,
11
11
Asserts ,
@@ -21,8 +21,6 @@ import type {
21
21
throws ,
22
22
} from "./types.ts" ;
23
23
24
- import { colors } from "../deps.ts" ;
25
-
26
24
/**
27
25
* testing framework for deno inspire in jest 🧙♂️
28
26
*/
You can’t perform that action at this time.
0 commit comments