Igor Makowski

Results 20 issues of Igor Makowski

**Just a e2e tests using mongo** A clear and concise description of what feature you want to be shown tests for (e.g. Authentication): I tried to create e2e tests by...

enhancement

`index.spec.tsx` ```ts import { render, screen } from '@testing-library/react' import Home from '.' describe('Home', () => { it('should render component', () => { render() expect(screen.getByText('RIGTCH')).toBeInTheDocument() }) }) ``` `error message`...

How can I mock generated gql functions I tried multiple ways to mock gql functions fe. ```ts vi.mock('#build/gql', () => ({ GqlLogin: async () => ({ login: { access_token: 'access_token',...

- `windmill-react-ui` version: `0.6.0` - `tailwindcss` version: `3.0.24` - `remix` version: `1.4.0` ### Relevant code or config: `tailwind.config.js` ```js /* eslint unicorn/prefer-module: off, @typescript-eslint/no-var-requires: off */ const defaultTheme = require('tailwindcss/defaultTheme')...

I installed the `svelte-persistent-store` library, and got error while importing `writable` from `svelte-persistent-store/dist/local` `theme.svelte` ```html import { setContext } from 'svelte' import { writable as persist } from 'svelte-persistent-store/dist/local' import...

throws 404 on vercel deployment. Locally everything works fine.

How to programmatically change bot token while application is running? I have bot token saved inside database and user can change it anyway, so I want to change bot token...

https://www.primefaces.org/

### Environment ------------------------------ - Operating System: `Darwin` - Node Version: `v18.12.0` - Nuxt Version: `3.0.0` - Nitro Version: `1.0.0` - Package Manager: `[email protected]` - Builder: `vite` - User Config: `modules`,...

bug

good: ```ts describe('updateOrCreateHistoryByUser', () => { let historyTrack: MockProxy let historyTracks: MockProxy let playHistoryMock: DeepMockProxy beforeEach(() => { historyTrack = mock() historyTracks = [historyTrack] }) test('should be true', () =>...