We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bcc44c commit caed0aeCopy full SHA for caed0ae
packages/data/src/index.test.ts
@@ -0,0 +1,12 @@
1
+import getSupportedNetworks from "./getSupportedNetworks"
2
+
3
+describe("Data", () => {
4
+ describe("# getSupportedNetworks", () => {
5
+ it("Should return a list of supported networks", () => {
6
+ const supportedNetworks = getSupportedNetworks()
7
8
+ expect(supportedNetworks).toHaveLength(6)
9
+ expect(supportedNetworks).toContain("sepolia")
10
+ })
11
12
+})
0 commit comments