Skip to content

Commit

Permalink
fix(test): cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
Shoaibdev7 committed Oct 19, 2024
1 parent 125bdad commit ec18e77
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 0 additions & 2 deletions cypress/e2e/trendingTopics/trendingTopics.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ describe('test trending topics', () => {
// wait for boltwall queue to send tweets to jarvis
cy.wait(70000)

cy.get('[data-testid="explore-graph-btn"]').click()

cy.wait('@getTrends').then((interception) => {
const responseBody = interception.response.body

Expand Down
2 changes: 0 additions & 2 deletions cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,5 @@ Cypress.Commands.add('initialSetup', (username, budget) => {

cy.wait(['@loadAbout', '@loadLatest', '@loadStats'])

cy.get('[data-testid="explore-graph-btn"]', { timeout: 90000 }).should('be.visible').click()

cy.wait(['@getTrends'])
})
7 changes: 1 addition & 6 deletions src/components/Universe/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { isDevelopment } from '~/constants'
import { useAppStore } from '~/stores/useAppStore'
import { useControlStore } from '~/stores/useControlStore'
import { useDataStore } from '~/stores/useDataStore'
import { useFeatureFlagStore } from '~/stores/useFeatureFlagStore'
import { useSelectedNode } from '~/stores/useGraphStore'
import { colors } from '~/utils/colors'
import { addToGlobalForE2e } from '~/utils/tests'
Expand Down Expand Up @@ -99,10 +98,6 @@ const _Universe = () => {
const isLoading = useDataStore((s) => s.isFetching)
const universeQuestionIsOpen = useAppStore((s) => s.universeQuestionIsOpen)

const { chatInterfaceFeatureFlag } = useFeatureFlagStore((s) => ({
chatInterfaceFeatureFlag: s.chatInterfaceFeatureFlag,
}))

const onWheelHandler = useCallback(
(e: React.WheelEvent) => {
const { target } = e
Expand Down Expand Up @@ -148,7 +143,7 @@ const _Universe = () => {
</Suspense>
</Canvas>
</Suspense>
{chatInterfaceFeatureFlag && universeQuestionIsOpen && <UniverseQuestion />}
{universeQuestionIsOpen && <UniverseQuestion />}
{isLoading && <Preloader fullSize={false} />}
<Overlay />
</Wrapper>
Expand Down
6 changes: 5 additions & 1 deletion src/stores/useAppStore/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { create } from 'zustand'
import { TAboutParams } from '~/network/fetchSourcesData'
import { useFeatureFlagStore } from '~/stores/useFeatureFlagStore'

export type SecondarySidebarActiveTab = '' | 'sentiment' | 'sources' | 'about'

Expand Down Expand Up @@ -71,8 +72,11 @@ export const useAppStore = create<AppStore>((set, get) => ({
transcriptIsOpen: !sidebarIsOpen ? false : get().transcriptIsOpen,
}),
setTranscriptOpen: (transcriptIsOpen) => set({ transcriptIsOpen }),
setUniverseQuestionIsOpen: () => set({ universeQuestionIsOpen: !get().universeQuestionIsOpen }),
setUniverseQuestionIsOpen: () => {
const { chatInterfaceFeatureFlag } = useFeatureFlagStore.getState()

set({ universeQuestionIsOpen: chatInterfaceFeatureFlag ? !get().universeQuestionIsOpen : false })
},
setAppMetaData: (appMetaData) => set({ appMetaData }),
setShowCollapseButton: (showCollapseButton) => set({ showCollapseButton }),
setSelectedColor: (selectedColor) => set({ selectedColor }),
Expand Down

0 comments on commit ec18e77

Please sign in to comment.