diff --git a/.changeset/sweet-lies-burn.md b/.changeset/sweet-lies-burn.md new file mode 100644 index 00000000..3ef74ce3 --- /dev/null +++ b/.changeset/sweet-lies-burn.md @@ -0,0 +1,5 @@ +--- +'@deploysentinel/cypress-quarantine': patch +--- + +fix: remove exports diff --git a/src/plugin.ts b/src/plugin.ts index 5811bc2e..5fed22fa 100644 --- a/src/plugin.ts +++ b/src/plugin.ts @@ -12,7 +12,7 @@ import styles from 'ansi-styles'; import { version as PKG_VERSION } from '../package.json'; // TODO: custom headers support ?? -export const buildAxiosInstance = (config: AxiosRequestConfig) => { +const buildAxiosInstance = (config: AxiosRequestConfig) => { // patch headers config.headers = { ...config.headers, diff --git a/src/support.ts b/src/support.ts index 02b01052..56cfd4aa 100644 --- a/src/support.ts +++ b/src/support.ts @@ -1,4 +1,4 @@ -export const getTestTitles = ( +const getTestTitles = ( cypressTest: Mocha.Test | Mocha.Suite | undefined, titles: string[], currentDepth = 0,