apprun
Version:
JavaScript library that has Elm inspired architecture, event pub-sub and components
74 lines (67 loc) • 1.97 kB
JavaScript
// Add Jest-specific test setup
global.spyOn = (obj, method) => {
const spy = jest.spyOn(obj, method);
spy.calls = {
allArgs: () => spy.mock.calls,
all: () => spy.mock.calls.map(args => ({ args })),
count: () => spy.mock.calls.length,
first: () => spy.mock.calls[0],
mostRecent: () => spy.mock.calls[spy.mock.calls.length - 1]
};
return spy;
};
// Add TextEncoder/TextDecoder polyfills for JSDOM environment
if (typeof TextEncoder === 'undefined') {
const { TextEncoder, TextDecoder } = require('util');
global.TextEncoder = TextEncoder;
global.TextDecoder = TextDecoder;
}
// Ensure global references are properly set up for JSDOM
Object.defineProperty(global, 'Node', {
value: globalThis.Node || class Node { },
writable: true,
configurable: true
});
Object.defineProperty(global, 'HTMLElement', {
value: globalThis.HTMLElement || class HTMLElement { },
writable: true,
configurable: true
});
Object.defineProperty(global, 'SVGElement', {
value: globalThis.SVGElement || class SVGElement { },
writable: true,
configurable: true
});
// Mock jasmine functionality with Jest equivalents
global.jasmine = {
createSpy: (name) => {
const spy = jest.fn();
spy.calls = {
allArgs: () => spy.mock.calls,
all: () => spy.mock.calls.map(args => ({ args })),
count: () => spy.mock.calls.length,
first: () => spy.mock.calls[0],
mostRecent: () => spy.mock.calls[spy.mock.calls.length - 1]
};
spy.and = {
callThrough: () => spy,
returnValue: (val) => spy.mockReturnValue(val),
callFake: (fn) => spy.mockImplementation(fn)
};
return spy;
}
};
// Setup document if it doesn't exist (for JSDOM)
if (typeof document === 'undefined') {
global.document = {
createElement: () => ({
setAttribute: () => { },
style: {},
appendChild: () => { }
}),
createComment: () => ({}),
body: {
appendChild: () => { }
}
};
}