48 lines
2.9 KiB
TypeScript
48 lines
2.9 KiB
TypeScript
// ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
// ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
|
|
// ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
|
|
// ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
|
|
// ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
|
|
// ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
|
|
// ┃ Copyright (c) 2017, the Perspective Authors. ┃
|
|
// ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
|
|
// ┃ This file is part of the Perspective library, distributed under the terms ┃
|
|
// ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
// ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
|
|
import { test } from "../helpers.ts";
|
|
import { run_standard_tests } from "../helpers/standard_tests.ts";
|
|
|
|
async function get_contents(page) {
|
|
return await page.evaluate(async () => {
|
|
const viewer = document.querySelector(
|
|
"perspective-viewer perspective-viewer-plugin",
|
|
);
|
|
|
|
// Don't format - light DOM is CSV in a <pre> tag.
|
|
return viewer.innerHTML;
|
|
});
|
|
}
|
|
|
|
test.describe("Superstore Inline", () => {
|
|
test.beforeEach(async function init({ page }) {
|
|
await page.goto(
|
|
"/node_modules/@perspective-dev/viewer/test/html/superstore-inline.html",
|
|
);
|
|
|
|
await page.evaluate(async () => {
|
|
while (!window["__TEST_PERSPECTIVE_READY__"]) {
|
|
await new Promise((x) => setTimeout(x, 10));
|
|
}
|
|
});
|
|
|
|
await page.evaluate(async () => {
|
|
await document.querySelector("perspective-viewer").restore({
|
|
plugin: "Debug",
|
|
});
|
|
});
|
|
});
|
|
|
|
run_standard_tests("superstore inline", get_contents);
|
|
});
|