index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-07-12 18:27:18 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-07-12 18:27:18 -0700 |
commit | 5465a0741a075de714053e7196adf8492272877c (patch) | |
tree | 149f08f0243f89263bac40a8ba84550b1652bbed /test/integration/helpers.cjs | |
parent | 9c537765ae4feeaeccaafa306bd59c310ca26bf4 (diff) |
Build scenarios from data in SVG files
Diffstat (limited to 'test/integration/helpers.cjs')
-rw-r--r-- | test/integration/helpers.cjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/helpers.cjs b/test/integration/helpers.cjs index dc03aba..62c2d27 100644 --- a/test/integration/helpers.cjs +++ b/test/integration/helpers.cjs @@ -88,5 +88,5 @@ global.selectCounter = function (counter) { } global.svgDocument = function (document) { - return `<?xml version="1.0" standalone="yes"?>\n` + document.querySelector('svg').outerHTML; + return `<?xml version="1.0" standalone="no"?>\n` + document.querySelector('svg').outerHTML; } |