-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(taxonomic-filter): Make selecting between property types more sea… (
- Loading branch information
1 parent
56a4ca6
commit ca28a69
Showing
10 changed files
with
150 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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
39 changes: 39 additions & 0 deletions
39
cypress/fixtures/api/feature-flags/property_definition.json
This file contains 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,39 @@ | ||
{ | ||
"count": 4, | ||
"next": null, | ||
"previous": null, | ||
"results": [ | ||
{ | ||
"id": "017dde0e-1cb5-0000-68b4-44835b7c894k", | ||
"name": "is_demo", | ||
"is_numerical": false, | ||
"query_usage_30_day": null, | ||
"property_type": null, | ||
"is_seen_on_filtered_events": null | ||
}, | ||
{ | ||
"id": "017dde0e-1cb5-0000-68b4-44835b7c894f", | ||
"name": "$feature/awesome-new-hidden-thing", | ||
"is_numerical": false, | ||
"query_usage_30_day": null, | ||
"property_type": "String", | ||
"is_seen_on_filtered_events": null | ||
}, | ||
{ | ||
"id": "017dde0e-1cb5-0000-68b4-44835b7c894g", | ||
"name": "$browser_version", | ||
"is_numerical": true, | ||
"query_usage_30_day": null, | ||
"property_type": null, | ||
"is_seen_on_filtered_events": null | ||
}, | ||
{ | ||
"id": "017dde0e-1cb5-0000-68b4-44835b7c894h", | ||
"name": "date_prop", | ||
"is_numerical": false, | ||
"query_usage_30_day": null, | ||
"property_type": "DateTime", | ||
"is_seen_on_filtered_events": null | ||
} | ||
] | ||
} |
This file contains 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,13 @@ | ||
[ | ||
{ "name": "3", "count": 160 }, | ||
{ "name": "is_demo", "count": 160 }, | ||
{ "name": "email", "count": 36 }, | ||
{ "name": "address", "count": 35 }, | ||
{ "name": "name", "count": 35 }, | ||
{ "name": "phone", "count": 35 }, | ||
{ "name": "$browser", "count": 1 }, | ||
{ "name": "$browser_version", "count": 1 }, | ||
{ "name": "$initial_referrer", "count": 1 }, | ||
{ "name": "$initial_referring_domain", "count": 1 }, | ||
{ "name": "$os", "count": 1 } | ||
] |
Binary file modified
BIN
+303 Bytes
(100%)
...end/__snapshots__/filters-propertyfilters--comparing-property-filters--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+229 Bytes
(100%)
...nd/__snapshots__/filters-propertyfilters--comparing-property-filters--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 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 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 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 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
@neilkakkar I noticed
.only
was set here so the other tests in the file aren't going to be running. Is that expected?