aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/toml.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'integration/bunjs-only-snippets/toml.test.js')
-rw-r--r--integration/bunjs-only-snippets/toml.test.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/integration/bunjs-only-snippets/toml.test.js b/integration/bunjs-only-snippets/toml.test.js
index 5e2d184d8..ecf0f5f8a 100644
--- a/integration/bunjs-only-snippets/toml.test.js
+++ b/integration/bunjs-only-snippets/toml.test.js
@@ -14,4 +14,11 @@ it("syntax", async () => {
expect(toml.inline.array[0]).toBe(1234);
expect(toml.inline.array[1]).toBe(4);
expect(toml.dev["foo.bar"]).toBe("baz");
+ expect(toml.install.scopes["@mybigcompany"].url).toBe(
+ "https://registry.mybigcompany.com"
+ );
+ expect(toml.install.scopes["@mybigcompany2"].url).toBe(
+ "https://registry.mybigcompany.com"
+ );
+ expect(toml.install.scopes["@mybigcompany3"].three).toBe(4);
});