Gathering detailed insights and metrics for jest-webgl-canvas-mock-v2
Gathering detailed insights and metrics for jest-webgl-canvas-mock-v2
Gathering detailed insights and metrics for jest-webgl-canvas-mock-v2
Gathering detailed insights and metrics for jest-webgl-canvas-mock-v2
A module used to mock both 2d and WebGL contexts in jest.
npm install jest-webgl-canvas-mock-v2
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
23 Stars
124 Commits
11 Forks
2 Branches
1 Contributors
Updated on Mar 11, 2025
Latest Version
1.0.3
Package Id
jest-webgl-canvas-mock-v2@1.0.3
Unpacked Size
136.58 kB
Size
25.67 kB
File Count
21
NPM Version
9.6.5
Node Version
16.13.1
Published on
Apr 26, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Mock
canvas
andWebGL
when running unit test cases with jest.
This project is a simple merge of jest-canvas-mock with webgl-mock so that both 2d and webgl contexts can be tested in jest. As such, the only tests provided are those from the original projects.
The current goal of this project is simply to make any tests using pixi.js
work in jest.
Please feel free to contribute and add any additional functionality required.
This should only be installed as a development dependency (devDependencies
) as it is only designed for testing.
1npm i --save-dev jest-webgl-canvas-mock-v2
In your package.json
under the jest
, create a setupFiles
array and add jest-webgl-canvas-mock-v2
to the array.
1{ 2 "jest": { 3 "setupFiles": ["jest-webgl-canvas-mock-v2"] 4 } 5}
If you already have a setupFiles
attribute you can also append jest-webgl-canvas-mock-v2
to the array.
1{ 2 "jest": { 3 "setupFiles": ["./__setups__/other.js", "jest-webgl-canvas-mock-v2"] 4 } 5}
More about in configuration section.
Alternatively you can create a new setup file which then requires this module or
add the require
statement to an existing setup file.
__setups__/canvas.js
1import 'jest-webgl-canvas-mock-v2'; 2// or 3require('jest-webgl-canvas-mock-v2');
Add that file to your setupFiles
array:
1"jest": { 2 "setupFiles": [ 3 "./__setups__/canvas.js" 4 ] 5}
This mock strategy implements all the canvas functions and actually verifies the parameters. If a
known condition would cause the browser to throw a TypeError
or a DOMException
, it emulates the
error. For instance, the CanvasRenderingContext2D#arc
function will throw a TypeError
if the
radius is negative, or if it was not provided with enough parameters.
1// arc throws a TypeError when the argument length is less than 5 2expect(() => ctx.arc(1, 2, 3, 4)).toThrow(TypeError); 3 4// when radius is negative, arc throws a dom exception when all parameters are finite 5expect(() => ctx.arc(0, 0, -10, 0, Math.PI * 2)).toThrow(DOMException);
The function will do Number
type coercion and verify the inputs exactly like the browser does. So
this is valid input.
1expect(() => ctx.arc("10", "10", "20", "0", "6.14")).not.toThrow();
Another part of the strategy is to validate input types. When using the
CanvasRenderingContext2D#fill
function, if you pass it an invalid fillRule
it will throw a
TypeError
just like the browser does.
1expect(() => ctx.fill("invalid!")).toThrow(TypeError); 2expect(() => ctx.fill(new Path2D(), "invalid!")).toThrow(TypeError);
We try to follow the ECMAScript specification as closely as possible.
There are multiple ways to validate canvas state. There are currently three static
methods attached
to the CanvasRenderingContext2D
class. The first way to use this feature is by using the __getEvents
method.
1/** 2 * In order to see which functions and properties were used for the test, you can use `__getEvents` 3 * to gather this information. 4 */ 5const events = ctx.__getEvents(); 6 7expect(events).toMatchSnapshot(); // jest will assert the events match the snapshot
The second way is to inspect the current path associated with the context.
1ctx.beginPath(); 2ctx.arc(1, 2, 3, 4, 5); 3ctx.moveTo(6, 7); 4ctx.rect(6, 7, 8, 9); 5ctx.closePath(); 6 7/** 8 * Any method that modifies the current path (and subpath) will be pushed to an event array. When 9 * using the `__getPath` method, that array will sliced and usable for snapshots. 10 */ 11const path = ctx.__getPath(); 12expect(path).toMatchSnapshot();
The third way is to inspect all of the success draw calls submitted to the context.
1ctx.drawImage(img, 0, 0); 2 3/** 4 * Every drawImage, fill, stroke, fillText, or strokeText function call will be logged in an event 5 * array. This method will return those events here for inspection. 6 */ 7const calls = ctx.__getDrawCalls(); 8expect(calls).toMatchSnapshot();
You can override the default mock return value in your test to suit your need. For example, to override return value of toDataURL
:
1canvas.toDataURL.mockReturnValueOnce( 2 'data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==' 3);
MIT
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 2/28 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More