Armin
Armin
I could whip up a short jsbin, but give me a couple of days please (guess we have similar workloads). Otherwise just use the example.html. On my screen (1280x800), I...
ok, so here's a quick test, not very pretty, but it does the job: http://jsbin.com/okosow/ The second box is for height testing. I haven't changed the js code, so depending...
That's weird. Do you have an example (jsfiddle) handy? Are you use @font-face to load custom fonts? Try executing fitText on `$(window).load(function () { $("#fittext").fitText(); });` Also, log the values...
For extra performance, if you are using google webfonts (if I recall correctly, you are), you could bind fitText to the event that is fired when they're done loading: [WebFont...
I ended up doing: ```ts import { HttpsProxyAgent } from 'https-proxy-agent'; // ... app.use('/proxy', proxy('https://google.com', { proxyReqOptDecorator: (proxyReqOpts) => { proxyReqOpts.agent = new HttpsProxyAgent('https://my-proxy-url.com'); return proxyReqOpts; }, })); ``` As...
@h2non thanks for the quick reply! We're moving to `http-proxy` / `node-http-proxy`. It was odd that it was failing without any error, anywhere; this was odd. Thanks for all your...
I don't know if it's the case for you as well, but I am running gulp (ie. `gulp build`) in _/foo_ . In this case, you can edit the [hookfile](https://github.com/therealklanni/guppy-cli/blob/38a24512d9b92d5ae7adfe5962b1c3231bc35687/scripts/hookfile#L15)...
> The core of this is we need a natural mode where we trust the user and a scripted mode where we don't trust the user. The blocker is defining...
To those who landed here hoping to find a working plugin for cypress@10 - this is the plugin you're looking for: https://github.com/archfz/cypress-terminal-report
@Alan-Cha no worries, I completely understand. I would have looked deeper into a fix if I myself had a bit more time. Thanks :)