v0.0.11: Added unit-tests, solved the key={...} problem, updated the build/watch configuration of CSX to be able to build minified and non-minified bundle outputs, as well as a CJS version of lib/ (for consuming in Node-environment, like Jest). The previous tests were renamed to examples, and should still need to be updated.
This commit is contained in:
7
jest/utils/next-animation-frame.js
Normal file
7
jest/utils/next-animation-frame.js
Normal file
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* @returns {Promise<void>}
|
||||
*/
|
||||
export async function nextAnimationFrame(inFrame){
|
||||
// Await the next animation frame
|
||||
await new Promise((resolve,reject)=>requestAnimationFrame(()=>resolve()));
|
||||
}
|
||||
13
jest/utils/test-container.js
Normal file
13
jest/utils/test-container.js
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* @returns {HTMLDivElement}
|
||||
*/
|
||||
export function testContainer(elements){
|
||||
let container = document.createElement('div');
|
||||
if(elements){
|
||||
if(!(elements instanceof Array)){
|
||||
elements = [elements];
|
||||
}
|
||||
container.append(...elements);
|
||||
}
|
||||
return container;
|
||||
}
|
||||
Reference in New Issue
Block a user