File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 100100 "./types/precision" : " ./src/types/precision.ts" ,
101101 "./types/safe-integer" : " ./src/types/safe_integer.ts"
102102 },
103+ "imports" : {
104+ "@std/assert" : " jsr:@std/assert@^1.0.11" ,
105+ "@std/testing" : " jsr:@std/testing@^1.0.9" ,
106+ "@std/expect" : " jsr:@std/expect@^1.0.13"
107+ },
103108 "tasks" : {
104109 "bench" : " ./scripts/benchmark.ts" ,
105110 "test" : " deno test -A --no-check=remote --coverage=tests/.coverage --clean --parallel" ,
Original file line number Diff line number Diff line change 11import * as constants from "../src/constants/mod.ts" ;
2- import { describe , it } from "jsr: @std/testing@1 /bdd" ;
3- import { expect } from "jsr: @std/expect@1 " ;
2+ import { describe , it } from "@std/testing/bdd" ;
3+ import { expect } from "@std/expect" ;
44
55const cases = {
66 Math : [
Original file line number Diff line number Diff line change 1- import { describe , it } from "jsr: @std/testing@1 /bdd" ;
2- import { assert , assertEquals } from "jsr: @std/assert@1 " ;
3- import { expect } from "jsr: @std/expect@1 " ;
1+ import { describe , it } from "@std/testing/bdd" ;
2+ import { assert , assertEquals } from "@std/assert" ;
3+ import { expect } from "@std/expect" ;
44import { MT19937 , random } from "../src/random.ts" ;
55
66describe ( "random" , ( ) => {
Original file line number Diff line number Diff line change 1- import { describe , it } from "jsr: @std/testing@1 /bdd" ;
2- import { expect } from "jsr: @std/expect@1 " ;
1+ import { describe , it } from "@std/testing/bdd" ;
2+ import { expect } from "@std/expect" ;
33import {
44 acos ,
55 acosh ,
You can’t perform that action at this time.
0 commit comments