mirror of
https://github.com/visgl/luma.gl.git
synced 2026-01-18 14:03:42 +00:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
// luma.gl, MIT license
|
|
// Copyright (c) vis.gl contributors
|
|
|
|
// TEST SETUP
|
|
|
|
import {createTestContext} from '@luma.gl/test-utils';
|
|
|
|
export const fixture = {
|
|
gl: createTestContext({webgl2: false, webgl1: true, throwOnError: true}),
|
|
gl2: createTestContext({webgl2: true, webgl1: false})
|
|
};
|