diff --git a/tests/integration/error_test.ts b/tests/integration/error_test.ts index 5b07905..f9f3244 100644 --- a/tests/integration/error_test.ts +++ b/tests/integration/error_test.ts @@ -23,7 +23,7 @@ A module manager for Deno. USAGE - deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.1.5/mod.ts + deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.2.0/mod.ts dmm [SUBCOMMAND] SUBCOMMANDS @@ -50,7 +50,7 @@ SUBCOMMANDS EXAMPLE USAGE Install dmm - deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.1.5/mod.ts + deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.2.0/mod.ts Check a single module dmm check fs diff --git a/tests/integration/help_test.ts b/tests/integration/help_test.ts index 6036b35..5a8923e 100644 --- a/tests/integration/help_test.ts +++ b/tests/integration/help_test.ts @@ -25,7 +25,7 @@ A module manager for Deno. USAGE - deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.1.5/mod.ts + deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.2.0/mod.ts dmm [SUBCOMMAND] SUBCOMMANDS @@ -52,7 +52,7 @@ SUBCOMMANDS EXAMPLE USAGE Install dmm - deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.1.5/mod.ts + deno install --allow-net='cdn.deno.land,api.deno.land' --allow-read='.' --allow-write='deps.ts' https://deno.land/x/dmm@v1.2.0/mod.ts Check a single module dmm check fs diff --git a/tests/integration/info_test.ts b/tests/integration/info_test.ts index 8cad621..7c29834 100644 --- a/tests/integration/info_test.ts +++ b/tests/integration/info_test.ts @@ -148,10 +148,10 @@ ${colours.blue("INFO")} Information on drash - Name: drash - Description: A REST microframework for Deno's HTTP server with zero dependencies. - - deno.land Link: https://deno.land/x/drash@v1.2.5 + - deno.land Link: https://deno.land/x/drash@${latestDrashRelease} - GitHub Repository: https://github.com/drashland/deno-drash - - Import Statement: import * as drash from "https://deno.land/x/drash@v1.2.5"; - - Latest Version: v1.2.5 + - Import Statement: import * as drash from "https://deno.land/x/drash@${latestDrashRelease}"; + - Latest Version: ${latestDrashRelease} `, ); diff --git a/tests/integration/up-to-date-deps/deps.ts b/tests/integration/up-to-date-deps/deps.ts index 5651a8d..4ae3906 100644 --- a/tests/integration/up-to-date-deps/deps.ts +++ b/tests/integration/up-to-date-deps/deps.ts @@ -1,4 +1,4 @@ -import { Drash } from "https://deno.land/x/drash@v1.2.5/mod.ts"; // up to date +import { Drash } from "https://deno.land/x/drash@v1.3.0/mod.ts"; // up to date import * as fs from "https://deno.land/std@0.76.0/fs/mod.ts"; // up to date diff --git a/tests/integration/up-to-date-deps/original_deps.ts b/tests/integration/up-to-date-deps/original_deps.ts index 5651a8d..4ae3906 100644 --- a/tests/integration/up-to-date-deps/original_deps.ts +++ b/tests/integration/up-to-date-deps/original_deps.ts @@ -1,4 +1,4 @@ -import { Drash } from "https://deno.land/x/drash@v1.2.5/mod.ts"; // up to date +import { Drash } from "https://deno.land/x/drash@v1.3.0/mod.ts"; // up to date import * as fs from "https://deno.land/std@0.76.0/fs/mod.ts"; // up to date