Skip to content

Commit

Permalink
Fix node test on v8 (#8156)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Oct 3, 2023
1 parent 1e170e6 commit df00db9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/modules/core/lib/deck.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ test('Deck#constructor', t => {

test('Deck#no views', t => {
const deck = new Deck({
device,
gl,
width: 1,
height: 1,
autoResizeDrawingBuffer: device.canvasContext.htmlCanvas.clientWidth > 0,
autoResizeDrawingBuffer: gl.canvas.clientWidth > 0,

viewState: {longitude: 0, latitude: 0, zoom: 0},
views: [],
Expand Down

0 comments on commit df00db9

Please sign in to comment.