Skip to content

Commit

Permalink
Disable wireframe on failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
felixpalmer committed Mar 4, 2024
1 parent c7a83eb commit 7afd922
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/render/test-cases/geojson-layer.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ export default [
data: geojson,
opacity: 0.8,
extruded: true,
wireframe: true,
// TODO(v9) re-enable
// wireframe: true,
getPointRadius: f => MARKER_SIZE_MAP[f.properties['marker-size']],
getFillColor: f => {
const color = parseColor(f.properties.fill || f.properties['marker-color']);
Expand Down
3 changes: 2 additions & 1 deletion test/render/test-cases/views.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ export default [
getFillColor: f => parseColor(f.properties.fill),
getLineColor: f => parseColor(f.properties.stroke),
extruded: true,
wireframe: true,
// TODO(v9) re-enable
// wireframe: true,
getElevation: 500,
lineWidthScale: 10,
lineWidthMinPixels: 1
Expand Down

0 comments on commit 7afd922

Please sign in to comment.