-
Notifications
You must be signed in to change notification settings - Fork 4.6k
fix: gsheets all sheets option enabled behind a feature flag #37942
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 3 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
20d3dab
fix: gsheets all sheets option enabled
979c2fe
tests have been reverted
4f74e7a
test cases reverted
e693483
feature flagging added for this
6060416
Merge branch 'release' of https://github.com/appsmithorg/appsmith int…
082961a
Merge branch 'release' into chore/gs-all-sheets-enabled
1abbdce
fix: issue with configuration view mode fixed
2fb59a0
Merge branch 'release' of https://github.com/appsmithorg/appsmith int…
a890582
Merge branch 'release' into chore/gs-all-sheets-enabled
7b37983
Merge branch 'release' into chore/gs-all-sheets-enabled
89334e8
fix: radio button retaining selected value issue fixed
da5784d
Merge branch 'release' into chore/gs-all-sheets-enabled
1ad0b9a
fix: all sheets test cases fixed
1f524dc
Merge branch 'release' into chore/gs-all-sheets-enabled
79997a9
fix: add response tab switch
alex-golovanov 2c7e2ba
fix: skipping all sheet tests until gsheet automation workflow is fixed
0a5a742
Merge branch 'chore/gs-all-sheets-enabled' of https://github.com/apps…
507c3f0
Merge branch 'release' into chore/gs-all-sheets-enabled
8fd1ab8
spec fixes
e177b64
fix: failing unit test case fixed
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
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 |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| /// <reference types="Cypress" /> | ||
| import { GSHEET_DATA } from "../../fixtures/test-data-gsheet"; | ||
| import { featureFlagIntercept } from "../../support/Objects/FeatureFlags"; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add feature flag setup in before hook The feature flag is imported but not used. Add it to the before hook to properly enable the feature flag. before("Setup app and spreadsheet", function () {
+ featureFlagIntercept({
+ release_gs_all_sheets_options_enabled: true,
+ });
//Add a new app and an add new spreadsheet query
|
||
| import { | ||
| homePage, | ||
| gsheetHelper, | ||
|
|
@@ -11,7 +12,7 @@ import { | |
| appSettings, | ||
| } from "../../support/Objects/ObjectsCore"; | ||
|
|
||
| describe.skip( | ||
| describe( | ||
| "GSheet-Functional Tests With Read Access", | ||
| { | ||
| tags: ["@tag.Datasource", "@tag.GSheet", "@tag.Git", "@tag.AccessControl"], | ||
|
|
@@ -26,6 +27,10 @@ describe.skip( | |
| let spreadSheetName = "test-sheet"; | ||
|
|
||
| before("Setup app and spreadsheet", function () { | ||
| // intercept features call gsheet all sheets enabled | ||
| featureFlagIntercept({ | ||
| release_gs_all_sheets_options_enabled: true, | ||
| }); | ||
| //Add a new app and an add new spreadsheet query | ||
| //Setting up the spreadsheet name | ||
| const uuid = Cypress._.random(0, 10000); | ||
|
|
||
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
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
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.