mirror of
https://github.com/iconify/iconify.git
synced 2024-11-14 16:54:03 +00:00
45 lines
964 B
TypeScript
45 lines
964 B
TypeScript
import { updateStyle } from '../src/render/style';
|
|
import {
|
|
cleanupGlobals,
|
|
expectedBlock,
|
|
expectedInline,
|
|
setupDOM,
|
|
styleOpeningTag,
|
|
} from '../src/tests/helpers';
|
|
|
|
describe('Testing rendering style', () => {
|
|
afterEach(cleanupGlobals);
|
|
|
|
it('updateStyle', () => {
|
|
// Setup DOM
|
|
const doc = setupDOM('').window.document;
|
|
|
|
// Create container node
|
|
const node = doc.createElement('div');
|
|
|
|
// Add style to empty parent
|
|
updateStyle(node, false);
|
|
expect(node.innerHTML).toBe(
|
|
styleOpeningTag + expectedBlock + '</style>'
|
|
);
|
|
|
|
// Change inline mode
|
|
updateStyle(node, true);
|
|
expect(node.innerHTML).toBe(
|
|
styleOpeningTag + expectedInline + '</style>'
|
|
);
|
|
|
|
// Do not change anything
|
|
updateStyle(node, true);
|
|
expect(node.innerHTML).toBe(
|
|
styleOpeningTag + expectedInline + '</style>'
|
|
);
|
|
|
|
// Change to block
|
|
updateStyle(node, false);
|
|
expect(node.innerHTML).toBe(
|
|
styleOpeningTag + expectedBlock + '</style>'
|
|
);
|
|
});
|
|
});
|