Skip to content

Commit

Permalink
forgot to pin versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaerdi committed May 25, 2022
1 parent bdee0c6 commit 9b00b0d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
5 changes: 3 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * as pretty_benching from "https://deno.land/x/[email protected]/mod.ts";
export * from "https://denopkg.com/crewdevio/Trex@proxy/proxy/files/testing.ts";
export * as colors from "https://deno.land/[email protected]/fmt/colors.ts";
export * as colors from "https://deno.land/[email protected]/fmt/colors.ts";
export * as asserts from "https://deno.land/[email protected]/testing/asserts.ts";
export * as bench from "https://deno.land/[email protected]/testing/bench.ts";
2 changes: 1 addition & 1 deletion run.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"scripts": {
"test": "deno test -A --unstable --import-map=./import_map.json",
"test": "deno test -A --unstable",
"log": "trex exec ghlog crewdevio/merlin"
}
}
6 changes: 2 additions & 4 deletions src/maven.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
*/

import type { Thresholds, Bench } from "./types.ts";
import { pretty_benching } from "../deps.ts";
import { colors } from "../deps.ts";
import { bench } from "../deps.ts";
import { pretty_benching, colors, bench } from "../deps.ts";

const { prettyBenchmarkProgress, prettyBenchmarkResult } = pretty_benching;

Expand Down Expand Up @@ -94,7 +92,7 @@ export class Maven {
prettyBenchmarkProgress({
indicators: Maven.runIndicator,
thresholds: Maven.thresholds,
}),
})
);
}

Expand Down
4 changes: 1 addition & 3 deletions src/merlin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* LICENSE file in the root directory of this source tree.
*/

import { asserts } from "../deps.ts";
import { asserts, colors } from "../deps.ts";
import type {
ArrayContains,
Asserts,
Expand All @@ -21,8 +21,6 @@ import type {
throws,
} from "./types.ts";

import { colors } from "../deps.ts";

/**
* testing framework for deno inspire in jest 🧙‍♂️
*/
Expand Down

0 comments on commit 9b00b0d

Please sign in to comment.