Eloi Simard-Quesnel

Results 9 comments of Eloi Simard-Quesnel

This is my tsconfig.spec.json ``` { "extends": "./tsconfig.json", "compilerOptions": { "noEmit": false, "outDir": "../out-tsc/spec", "module": "commonjs", "types": ["jasmine", "node"] }, "files": ["test.ts", "polyfills.ts"], "include": ["**/*.spec.ts", "**/*.d.ts", "**/*.mock.ts"] } ``` The...

I think we ended up using https://github.com/just-jeb/angular-builders/tree/master/packages/jest instead :/

I came accross the same use case deploying my site to Netlify. I have no control over the build environment and need to generate a pdf.

@tommy4st Can you share the aria-label solution you mentionned? I just came from reading [this article](https://www.smashingmagazine.com/2021/05/accessible-svg-patterns-comparison/) and they don't seem to mention aria-label as an option. They mostly refer to...

> these arguments never appear in the play function Landed here about this issue. It looks like from the typings we receive args in `play`, but when logging it in...

@shilman My test looks something like ```tsx import { composeStories, composeStory, StoryFn } from '@storybook/react'; import projectAnnotations from '../../../.storybook/preview'; import * as stories from './CopyToClipboard.stories'; import { render } from...

> The issue title is a bit misleading since failed tests are indeed run when f is pressed Yes, sorry, I think I was confused because the output contained "rerun...

I just found a workaround for now, but is not the cleanest ```ts this.audioStream.events().subscribe((event) => { if (event.type === 'ended' && this.state.isLastTrack) { this.shouldHaveStopped = true; } else if (event.type...

I have the exact same issue. I cretead `App_Ressources/ios/Podfile` with this content ``` post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['SWIFT_SWIFT3_OBJC_INFERENCE'] = 'Default' end end end ``` effectively...