mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-07 23:40:21 -05:00
c2b270f128
* chore: Removing workaround for long Cypress verification times * Blank commit for Percy build * Getting a build * Need the mac build * Missed a few! * We apparently still need this one.
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
import { shell } from 'electron'
|
|
|
|
// NOTE: in order for query params to be passed through on links
|
|
// forwardQueryParams: true must be set for that slug in the on package
|
|
|
|
export const openExternal = (url: string) => {
|
|
return shell.openExternal(url)
|
|
}
|