Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add test case for unknown protocol
  • Loading branch information
arendjr committed Jul 25, 2023
commit 9330ce3700cc8d8649499eb98a46facb752a3fd9
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import uncle from "../uncle";
import sibling from "./sibling";
import express from "npm:epxress";
import imageUrl from "url:./image.png";
import assert from "node:assert";
import aunt from "../aunt";
import { VERSION } from "https://deno.land/std/version.ts";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
source: crates/rome_js_analyze/tests/spec_tests.rs
assertion_line: 80
expression: groups.js
---
# Input
```js
import uncle from "../uncle";
import sibling from "./sibling";
import express from "npm:epxress";
import imageUrl from "url:./image.png";
import assert from "node:assert";
import aunt from "../aunt";
import { VERSION } from "https://deno.land/std/version.ts";
Expand All @@ -17,7 +17,7 @@ import { mock, test } from "node:test";

# Actions
```diff
@@ -1,7 +1,7 @@
@@ -1,8 +1,8 @@
+import assert from "node:assert";
+import { mock, test } from "node:test";
+import express from "npm:epxress";
Expand All @@ -26,6 +26,7 @@ import { mock, test } from "node:test";
import uncle from "../uncle";
import sibling from "./sibling";
-import express from "npm:epxress";
import imageUrl from "url:./image.png";
-import assert from "node:assert";
-import aunt from "../aunt";
-import { VERSION } from "https://deno.land/std/version.ts";
Expand Down