Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 7
fix: unpin the platform protocol version so clients auto-detect#113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
26a90c2cd7fcc801efd80953a77b254c74d45d513dc78b5cbb3d195eFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| import assert from 'node:assert/strict'; | ||
| import { readFileSync } from 'node:fs'; | ||
| import { describe, it } from 'node:test'; | ||
| const litePages = [ | ||
| ['dashmint-lab', 'dashmint-lite.html'], | ||
| ['dashnote', 'dashnote-lite.html'], | ||
| ['dashrate', 'dashrate-lite.html'], | ||
| ['dashproof-lab', 'dashproof-lite.html'], | ||
| ]; | ||
| describe('Standalone lite SDK versions', () => { | ||
| for (const [appName, pageName] of litePages) { | ||
| it(`${appName} matches its companion app`, () => { | ||
| const appDirectory = new URL( | ||
| `../example-apps/${appName}/`, | ||
| import.meta.url, | ||
| ); | ||
| const packageJson = JSON.parse( | ||
| readFileSync(new URL('package.json', appDirectory), 'utf8'), | ||
| ); | ||
| const page = readFileSync( | ||
| new URL(`public/${pageName}`, appDirectory), | ||
| 'utf8', | ||
| ); | ||
| const expectedImport = | ||
| `https://esm.sh/@dashevo/evo-sdk@` + | ||
| packageJson.dependencies['@dashevo/evo-sdk']; | ||
| const sdkImports = [ | ||
| ...page.matchAll( | ||
| /from\s+['"](https:\/\/esm\.sh\/@dashevo\/evo-sdk@[^'"]+)['"]/g, | ||
| ), | ||
| ].map((match) => match[1]); | ||
| assert.deepEqual( | ||
| sdkImports, | ||
| [expectedImport], | ||
| `${pageName} must import exactly the SDK version from ${appName}/package.json`, | ||
| ); | ||
| }); | ||
| } | ||
| }); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| import assert from 'node:assert/strict'; | ||
| import { describe, it } from 'node:test'; | ||
| import { EvoSDK } from '@dashevo/evo-sdk'; | ||
| import { createClient } from '../setupDashClient-core.mjs'; | ||
| const trustedFactories = [ | ||
| ['testnet', 'testnetTrusted'], | ||
| ['mainnet', 'mainnetTrusted'], | ||
| ['local', 'localTrusted'], | ||
| ]; | ||
| describe('Platform protocol version configuration', () => { | ||
| for (const [network, factoryName] of trustedFactories) { | ||
| it(`${network} leaves the SDK version unpinned`, async (t) => { | ||
| const sdk = { connect: t.mock.fn(async () => {}) }; | ||
| const factory = t.mock.method(EvoSDK, factoryName, () => sdk); | ||
| assert.equal(await createClient(network), sdk); | ||
| assert.equal(factory.mock.callCount(), 1); | ||
| assert.deepEqual(factory.mock.calls[0].arguments, []); | ||
| assert.equal(sdk.connect.mock.callCount(), 1); | ||
| }); | ||
| } | ||
| }); |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.