Christopher McCulloh
Christopher McCulloh
Allows user to provide custom name for their screenshots and snapshots: ``` .screenshot({ path: settings.imageSnapshotPath + 'admin.0000.png'}) .toMatchSnapshot({ name: 'admin.0000' }) ```
Instead of continually appending new suffixes, replace the previous testId suffix with a new one. Uses a `.` instead of a space so that we aren't introducing spaces into filenames...
Adds a provider for Okta. Can be used using: ``` new OktaOAuth2Provider({ oktaDomain: import.meta.env.VITE_OKTA_DOMAIN as string, clientId: import.meta.env.VITE_OKTA_CLIENTID as string, clientSecret: import.meta.env.VITE_OKTA_CLIENTSECRET as string }) ``` Supersedes #56
https://github.com/OptimalBits/bull/blob/478ed16691d7f7ed5fee2c35fc73aa3dea34e71b/lib/job.js#L196
**TL;DR:** Allow user to provide name for file asset is to be exported to. Perhaps something like `fileName`: ``` dom.export(artboard, { output: path, fileName: artboard.name, formats: format.fileFormat, scales: format.size, overwriting:...
Take the following valid JS: ``` const dom = require('sketch/dom'); const doc = dom.getSelectedDocument(); const targetName = "arbitraryName"; const newName = "arbitraryNewName"; const targetLayers = doc.getLayersNamed(targetName); targetLayers.forEach(layer => layer.name =...
It would be nice if I could say: `jest-test-gen src/**.*.js` And it would just run on every file it finds that matches the pattern I specified. It would be even...
This PR addresses Snyk identified security vulnerabilities from an older version of micromatch. [I have a PR open with helper-md](https://github.com/helpers/helper-md/pull/7) and another one with [helper-markdown](https://github.com/helpers/helper-markdown/pull/21) that once merged could be...
This PR addresses Snyk identified security vulnerabilities from an older version of remarkable. These vulnerabilities were found through an internal tool called "[Snyk](https://snyk.io/)". You can see the vulnerability reports below....
fixes #171