-
Notifications
You must be signed in to change notification settings - Fork 10.3k
fix(create-gatsby): Respect telemetry disable #34495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7faefcc
fix(create-gatsby): Respect telemetry disable
tyhopp ed0fc7d
Increase wait on flaky ssr test
tyhopp 4cce3bc
Remove ssr test fix
tyhopp 54c31ca
Drop async from tests
tyhopp 4db9bd8
Change describe section name
tyhopp f60dbc9
Adjust control flow
tyhopp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| let isTrackingEnabled: () => boolean | ||
|
|
||
| const get = jest.fn() | ||
| const set = jest.fn() | ||
|
|
||
| jest.doMock(`../get-config-store`, () => { | ||
| return { | ||
| getConfigStore: (): unknown => { | ||
| return { | ||
| get, | ||
| set, | ||
| } | ||
| }, | ||
| } | ||
| }) | ||
|
|
||
| describe(`isTrackingEnabled`, () => { | ||
| beforeEach(() => { | ||
| jest.resetModules() | ||
| isTrackingEnabled = require(`../tracking`).isTrackingEnabled | ||
| }) | ||
|
|
||
| it(`is enabled by default`, async () => { | ||
| const enabled = isTrackingEnabled() | ||
| expect(enabled).toBeTrue() | ||
| }) | ||
|
|
||
| it(`respects the setting of the config store`, async () => { | ||
| get.mockImplementationOnce(key => { | ||
| if (key === `telemetry.enabled`) { | ||
| return false | ||
| } else { | ||
| return true | ||
| } | ||
| }) | ||
|
|
||
| const enabled = isTrackingEnabled() | ||
| expect(enabled).toBeFalse() | ||
|
|
||
| const cachedEnabled = isTrackingEnabled() | ||
| expect(cachedEnabled).toBeFalse() | ||
| }) | ||
|
|
||
| describe(`isTrackingEnabled / process.env.GATSBY_TELEMETRY_DISABLED`, () => { | ||
tyhopp marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| beforeAll(() => { | ||
| process.env.GATSBY_TELEMETRY_DISABLED = `true` | ||
| }) | ||
|
|
||
| it(`respects the setting of the environment variable`, async () => { | ||
tyhopp marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| const enabled = isTrackingEnabled() | ||
| expect(enabled).toBeFalse() | ||
|
|
||
| const cachedEnabled = isTrackingEnabled() | ||
| expect(cachedEnabled).toBeFalse() | ||
| }) | ||
|
|
||
| afterAll(() => { | ||
| process.env.GATSBY_TELEMETRY_DISABLED = undefined | ||
| }) | ||
| }) | ||
| }) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| // Copied from gatsby-core-utils to avoid depending on it, similar to get-config-store | ||
| // | ||
| // Returns true for `true`, true, positive numbers | ||
| // Returns false for `false`, false, 0, negative integers and anything else | ||
| export function isTruthy(value: any): boolean { | ||
| // Return if Boolean | ||
| if (typeof value === `boolean`) return value | ||
|
|
||
| // Return false if null or undefined | ||
| if (value === undefined || value === null) return false | ||
|
|
||
| // If the String is true or false | ||
| if (value.toLowerCase() === `true`) return true | ||
| if (value.toLowerCase() === `false`) return false | ||
|
|
||
| // Now check if it's a number | ||
| const number = parseInt(value, 10) | ||
| if (isNaN(number)) return false | ||
| if (number > 0) return true | ||
|
|
||
| // Default to false | ||
| return false | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.