fix: re-enable cypress checks (#32008)
This commit is contained in:
parent
732de4ac7f
commit
b12f515185
|
|
@ -21,6 +21,7 @@
|
|||
*.swp
|
||||
__pycache__
|
||||
|
||||
.aider.*
|
||||
.local
|
||||
.cache
|
||||
.bento*
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@ def run_cypress_for_test_file(
|
|||
f"--browser {browser} "
|
||||
f"--record --group {group_id} --tag {REPO},{GITHUB_EVENT_NAME} "
|
||||
f"--ci-build-id {build_id} "
|
||||
f"--wait-for-missing-groups "
|
||||
f"-- {chrome_flags}"
|
||||
)
|
||||
else:
|
||||
|
|
|
|||
|
|
@ -599,7 +599,7 @@ describe('Drill by modal', () => {
|
|||
]);
|
||||
});
|
||||
|
||||
it.skip('Radar Chart', () => {
|
||||
it('Radar Chart', () => {
|
||||
testEchart('radar', 'Radar Chart', [
|
||||
[182, 49],
|
||||
[423, 91],
|
||||
|
|
|
|||
|
|
@ -335,7 +335,7 @@ describe('Drill to detail modal', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe.skip('Bar Chart', () => {
|
||||
describe('Bar Chart', () => {
|
||||
it('opens the modal with the correct filters', () => {
|
||||
interceptSamples();
|
||||
|
||||
|
|
@ -373,7 +373,7 @@ describe('Drill to detail modal', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe.skip('Area Chart', () => {
|
||||
describe('Area Chart', () => {
|
||||
it('opens the modal with the correct filters', () => {
|
||||
testTimeChart('echarts_area');
|
||||
});
|
||||
|
|
@ -407,7 +407,7 @@ describe('Drill to detail modal', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe.skip('World Map', () => {
|
||||
describe('World Map', () => {
|
||||
it('opens the modal with the correct filters', () => {
|
||||
interceptSamples();
|
||||
|
||||
|
|
@ -567,7 +567,7 @@ describe('Drill to detail modal', () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe.skip('Radar Chart', () => {
|
||||
describe('Radar Chart', () => {
|
||||
it('opens the modal with the correct filters', () => {
|
||||
interceptSamples();
|
||||
|
||||
|
|
|
|||
|
|
@ -176,7 +176,7 @@ describe('Horizontal FilterBar', () => {
|
|||
validateFilterNameOnDashboard(testItems.topTenChart.filterColumn);
|
||||
});
|
||||
|
||||
it.skip('should spot changes in "more filters" and apply their values', () => {
|
||||
it('should spot changes in "more filters" and apply their values', () => {
|
||||
cy.intercept(`/api/v1/chart/data?form_data=**`).as('chart');
|
||||
prepareDashboardFilters([
|
||||
{ name: 'test_1', column: 'country_name', datasetId: 2 },
|
||||
|
|
@ -204,7 +204,7 @@ describe('Horizontal FilterBar', () => {
|
|||
);
|
||||
});
|
||||
|
||||
it.skip('should focus filter and open "more filters" programmatically', () => {
|
||||
it('should focus filter and open "more filters" programmatically', () => {
|
||||
prepareDashboardFilters([
|
||||
{ name: 'test_1', column: 'country_name', datasetId: 2 },
|
||||
{ name: 'test_2', column: 'country_code', datasetId: 2 },
|
||||
|
|
@ -231,7 +231,7 @@ describe('Horizontal FilterBar', () => {
|
|||
cy.get('.ant-select-focused').should('be.visible');
|
||||
});
|
||||
|
||||
it.skip('should show tag count and one plain tag on focus and only count on blur in select ', () => {
|
||||
it('should show tag count and one plain tag on focus and only count on blur in select ', () => {
|
||||
prepareDashboardFilters([
|
||||
{ name: 'test_1', column: 'country_name', datasetId: 2 },
|
||||
]);
|
||||
|
|
|
|||
Loading…
Reference in New Issue