diff options
Diffstat (limited to 'test/fixtures/dom-test.js')
-rw-r--r-- | test/fixtures/dom-test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fixtures/dom-test.js b/test/fixtures/dom-test.js index 364612f6..55353a5d 100644 --- a/test/fixtures/dom-test.js +++ b/test/fixtures/dom-test.js @@ -31,7 +31,7 @@ function prepareWindow(window) { /** @returns {string} */ get() { return this.textContent; }, /** @param {string} value */ - set(value) { this.textContent = value; } + set(value) { this.textContent = value; }, }); // Placeholder for feature detection @@ -51,7 +51,7 @@ export async function setupDomTest(htmlFilePath) { prepareWindow(window); return { window, - teardown: (global) => environment.teardown(global) + teardown: (global) => environment.teardown(global), }; } @@ -73,6 +73,6 @@ export function createDomTest(htmlFilePath) { } finally { await environment.teardown(global); } - } + }, }); } |