1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 11:28:23 +02:00

Fixed case where there were no states defined

This commit is contained in:
squidfunk 2017-02-09 17:49:13 +01:00
parent 7e601d485a
commit 3e2fa37250
2 changed files with 15 additions and 14 deletions

View File

@ -31,7 +31,7 @@ node_js:
matrix:
include:
- node_js: 7
script: yarn run test:visual:run
script: yarn run test:visual:run --no-clean
# Install a C++11 compatible compiler
addons:

View File

@ -136,42 +136,43 @@ const generate = (dirname, components) => {
suite.setCaptureElements(component.capture)
/* Generate a subsuite for every state */
for (const state of component.states) {
const states = component.states || [{ name: "", wait: 0 }]
for (const state of states) {
const test = subsuite => {
/* Resolve and apply relevant breakpoints */
/* Resolve and apply relevant breakpoints */
const breakpoints = resolve(config.breakpoints, component.break)
for (const breakpoint of breakpoints) {
subsuite.capture(`@${breakpoint.name}`, actions => {
/* Set window size according to breakpoint */
/* Set window size according to breakpoint */
actions.setWindowSize(
breakpoint.size.width, breakpoint.size.height)
breakpoint.size.width, breakpoint.size.height)
/* Add the name as a CSS class to the captured element */
/* Add the name as a CSS class to the captured element */
if (state.name)
actions.executeJS(new Function(`
document.querySelector(
"${component.capture}"
).classList.add("${state.name}")
`))
document.querySelector(
"${component.capture}"
).classList.add("${state.name}")
`))
/* Execute function inside an IIFE */
/* Execute function inside an IIFE */
if (state.exec)
actions.executeJS(new Function(`(${state.exec})()`))
/* Wait the specified time before taking a screenshot */
/* Wait the specified time before taking a screenshot */
if (state.wait)
actions.wait(state.wait)
})
}
}
/* No state sub-suite if the name is empty */
/* No state sub-suite if the name is empty */
if (state.name.length > 0)
gemini.suite(state.name, subsuite => test(subsuite))
else
test(suite)
test(suite)
}
/* Generate sub-suites */