diff --git a/PENDING.md b/PENDING.md index e69de29bb2..40175cd537 100644 --- a/PENDING.md +++ b/PENDING.md @@ -0,0 +1,16 @@ +### Fixed + +- [#\2188](https://github.com/cosmos/voyager/issues/2188) Fixed issues with the way we were loading PageNetwork @jbibla +- [#\2246](https://github.com/cosmos/voyager/issues/2246) Fix from moniker not visible on withdraw txs @faboweb + +### Added + +- [\#1959](https://github.com/cosmos/voyager/issues/1959) display transactions on block page @fedekunze + +### Changed + +- [\#2255](https://github.com/cosmos/voyager/pull/2255) removed onboarding tutorial @fedekunze +- [\#2259](https://github.com/cosmos/voyager/issues/2259) removed PagePreferences @fedekunze +- [\#1337](https://github.com/cosmos/voyager/issues/1337) refactor unit tests: Page404, ShortBech32 @fedekunze +- Ignore changelog check on master @faboweb +- [#\2217](https://github.com/cosmos/voyager/issues/2217) Limit inputs to max precision @faboweb diff --git a/app/src/renderer/components/common/AnchorCopy.vue b/app/src/renderer/components/common/AnchorCopy.vue deleted file mode 100644 index 8385f7a9cb..0000000000 --- a/app/src/renderer/components/common/AnchorCopy.vue +++ /dev/null @@ -1,60 +0,0 @@ - - - diff --git a/app/src/renderer/components/common/Page404.vue b/app/src/renderer/components/common/Page404.vue index fc360313ad..0d6821f92d 100644 --- a/app/src/renderer/components/common/Page404.vue +++ b/app/src/renderer/components/common/Page404.vue @@ -9,6 +9,11 @@ + + `; diff --git a/test/unit/specs/components/common/__snapshots__/PagePreferences.spec.js.snap b/test/unit/specs/components/common/__snapshots__/PagePreferences.spec.js.snap deleted file mode 100644 index 637acf6d16..0000000000 --- a/test/unit/specs/components/common/__snapshots__/PagePreferences.spec.js.snap +++ /dev/null @@ -1,43 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`PagePreferences has the expected html structure if connected 1`] = ` - - - - - http://localhost:9070 - - - - - - - - - - - - -`; diff --git a/test/unit/specs/components/common/__snapshots__/ShortBech32.spec.js.snap b/test/unit/specs/components/common/__snapshots__/ShortBech32.spec.js.snap index 94ba75b264..31421eaaa5 100644 --- a/test/unit/specs/components/common/__snapshots__/ShortBech32.spec.js.snap +++ b/test/unit/specs/components/common/__snapshots__/ShortBech32.spec.js.snap @@ -1,7 +1,29 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`ShortBech32 has the expected html structure 1`] = ` -"
+exports[`ShortBech32 should show a short address 1`] = ` +
+
+ cosmosftw…6789 -
checkCopied
" + +
+ +
+ + check + + + Copied + +
+
`; diff --git a/test/unit/specs/components/common/__snapshots__/TmField.spec.js.snap b/test/unit/specs/components/common/__snapshots__/TmField.spec.js.snap index 8eb853520e..7a7d9220c1 100644 --- a/test/unit/specs/components/common/__snapshots__/TmField.spec.js.snap +++ b/test/unit/specs/components/common/__snapshots__/TmField.spec.js.snap @@ -7,6 +7,90 @@ exports[`TmField allows for style customization 1`] = ` /> `; +exports[`TmField displays a disabled toggle 1`] = ` +
+ + + bad + + + +
+
+ cool +
+
+ +
+
+ bad +
+
+ +
+ + +
+ +`; + +exports[`TmField displays a disabled toggle 2`] = ` +
+ + + bad + + + +
+
+ cool +
+
+ +
+
+ bad +
+
+ +
+ + +
+ +`; + exports[`TmField displays a number input 1`] = ` - - - settings - - -
diff --git a/test/unit/specs/components/governance/__snapshots__/PageGovernance.spec.js.snap b/test/unit/specs/components/governance/__snapshots__/PageGovernance.spec.js.snap index 179af6b56b..071cf850e0 100644 --- a/test/unit/specs/components/governance/__snapshots__/PageGovernance.spec.js.snap +++ b/test/unit/specs/components/governance/__snapshots__/PageGovernance.spec.js.snap @@ -28,17 +28,6 @@ exports[`PageGovernance disables proposal creation if not connected 1`] = ` > - - - settings - - - @@ -150,17 +139,6 @@ exports[`PageGovernance has the expected html structure 1`] = ` > - - - settings - - - diff --git a/test/unit/specs/store/onboarding.spec.js b/test/unit/specs/store/onboarding.spec.js deleted file mode 100644 index ca2568b956..0000000000 --- a/test/unit/specs/store/onboarding.spec.js +++ /dev/null @@ -1,42 +0,0 @@ -import setup from "../../helpers/vuex-setup" - -const instance = setup() - -describe(`Module: Onboarding`, () => { - let store, state - - beforeEach(() => { - store = instance.shallow().store - state = store.state.onboarding - }) - - it(`toggles onboarding active state`, () => { - expect(state.active).toBe(false) - store.commit(`setOnboardingActive`, false) - expect(state.active).toBe(false) - store.commit(`setOnboardingActive`, true) - expect(state.active).toBe(true) - }) - - it(`toggles onboarding state`, () => { - expect(state.state).toBe(0) - store.commit(`setOnboardingState`, 3) - expect(state.state).toBe(3) - store.commit(`setOnboardingState`, 0) - expect(state.state).toBe(0) - }) - - it(`loads the onboarding active state from localStorage`, () => { - store.commit(`setOnboardingActive`, false) - state.active = true - store.commit(`loadOnboarding`) - expect(state.active).toBe(false) - }) - - it(`loads the onboarding state from localStorage`, () => { - store.commit(`setOnboardingState`, 3) - state.state = 1 - store.commit(`loadOnboarding`) - expect(state.state).toBe(3) - }) -})