@nifty-lil-tricks/testing
Advanced tools
Comparing version 0.2.2 to 0.3.0
@@ -27,3 +27,3 @@ // Copyright 2023-2023 the Nifty li'l' tricks authors. All rights reserved. MIT license. | ||
* ```typescript | ||
* import { setupTestsFactory } from "https://deno.land/x/nifty_lil_tricks_testing@__VERSION__/mod.ts"; | ||
* import { setupTestsFactory } from "@nifty-lil-tricks/testing"; | ||
* | ||
@@ -30,0 +30,0 @@ * const helloWorldPlugin = { |
@@ -6,3 +6,3 @@ { | ||
"name": "@nifty-lil-tricks/testing", | ||
"version": "0.2.2", | ||
"version": "0.3.0", | ||
"description": "A selection of useful utilities (or nifty li'l tricks!) for all things testing", | ||
@@ -9,0 +9,0 @@ "author": "Jonny Green <hello@jonnydgreen.com>", |
@@ -28,3 +28,3 @@ # nifty_lil_tricks_testing | ||
```typescript | ||
import * as testing from "https://deno.land/x/nifty_lil_tricks_testing@__VERSION__/mod.ts"; | ||
import * as testing from "deps"; | ||
``` | ||
@@ -61,8 +61,8 @@ | ||
it, | ||
} from "https://deno.land/std/testing/bdd.ts"; | ||
import { assertEquals } from "https://deno.land/std/testing/asserts.ts"; | ||
} from "testing/bdd.ts"; | ||
import { assertEquals } from "testing/asserts.ts"; | ||
import { | ||
setupTestsFactory, | ||
type SetupTestsTeardown, | ||
} from "https://deno.land/x/nifty_lil_tricks_testing@__VERSION__/mod.ts"; | ||
} from "@nifty-lil-tricks/testing"; | ||
@@ -136,3 +136,3 @@ // Define or import a plugin as follows: | ||
type Plugin, | ||
} from "https://deno.land/x/nifty_lil_tricks_testing@__VERSION__/mod.ts"; | ||
} from "@nifty-lil-tricks/testing"; | ||
@@ -175,3 +175,3 @@ interface HelloWorldConfig { | ||
type SetupTestsTeardown, | ||
} from "https://deno.land/x/nifty_lil_tricks_testing@__VERSION__/mod.ts"; | ||
} from "@nifty-lil-tricks/testing"; | ||
@@ -223,3 +223,3 @@ // Define or import a plugin as follows: | ||
type SetupTestsTeardown, | ||
} from "https://deno.land/x/nifty_lil_tricks_testing@__VERSION__/mod.ts"; | ||
} from "@nifty-lil-tricks/testing"; | ||
@@ -226,0 +226,0 @@ // Define or import a plugin as follows: |
@@ -30,3 +30,3 @@ "use strict"; | ||
* ```typescript | ||
* import { setupTestsFactory } from "https://deno.land/x/nifty_lil_tricks_testing@__VERSION__/mod.ts"; | ||
* import { setupTestsFactory } from "@nifty-lil-tricks/testing"; | ||
* | ||
@@ -33,0 +33,0 @@ * const helloWorldPlugin = { |
@@ -15,3 +15,3 @@ import { SetupTestsFactoryPlugins, SetupTestsFactoryResult, SetupTestsPlugins } from "./type.js"; | ||
* ```typescript | ||
* import { setupTestsFactory } from "https://deno.land/x/nifty_lil_tricks_testing@__VERSION__/mod.ts"; | ||
* import { setupTestsFactory } from "@nifty-lil-tricks/testing"; | ||
* | ||
@@ -18,0 +18,0 @@ * const helloWorldPlugin = { |
@@ -92,3 +92,3 @@ /** | ||
* ```typescript | ||
* import { setupTestsFactory } from "https://deno.land/x/nifty_lil_tricks_testing@__VERSION__/mod.ts"; | ||
* import { setupTestsFactory } from "@nifty-lil-tricks/testing"; | ||
* | ||
@@ -95,0 +95,0 @@ * const helloWorldPlugin = { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30126