2022-01-04 21:06:17 +01:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
2022-06-06 17:05:26 +02:00
|
|
|
(C) 2022 Taler Systems S.A.
|
2022-01-04 21:06:17 +01:00
|
|
|
|
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @author Sebastian Javier Marchano (sebasjm)
|
|
|
|
*/
|
2022-04-27 17:22:16 +02:00
|
|
|
import { setupI18n } from "@gnu-taler/taler-util";
|
2022-12-06 15:28:56 +01:00
|
|
|
import { parseGroupImport } from "@gnu-taler/web-util/lib/index.browser";
|
2023-01-04 19:44:28 +01:00
|
|
|
import { setupPlatform } from "./platform/foreground.js";
|
2022-12-06 15:28:56 +01:00
|
|
|
import chromeAPI from "./platform/chrome.js";
|
|
|
|
import { renderNodeOrBrowser } from "./test-utils.js";
|
|
|
|
|
2022-04-27 17:22:16 +02:00
|
|
|
import * as components from "./components/index.stories.js";
|
|
|
|
import * as cta from "./cta/index.stories.js";
|
|
|
|
import * as mui from "./mui/index.stories.js";
|
2022-03-29 04:41:07 +02:00
|
|
|
import * as popup from "./popup/index.stories.js";
|
|
|
|
import * as wallet from "./wallet/index.stories.js";
|
2022-01-04 21:06:17 +01:00
|
|
|
|
|
|
|
setupI18n("en", { en: {} });
|
2022-04-27 17:22:16 +02:00
|
|
|
setupPlatform(chromeAPI);
|
2022-01-04 21:06:17 +01:00
|
|
|
|
2022-12-06 15:28:56 +01:00
|
|
|
describe("All the examples:", () => {
|
2022-12-15 21:12:03 +01:00
|
|
|
const cms = parseGroupImport({ popup, wallet, cta, mui, components });
|
|
|
|
cms.forEach((group) => {
|
2022-12-06 15:28:56 +01:00
|
|
|
describe(`Example for group "${group.title}:"`, () => {
|
2022-12-15 21:12:03 +01:00
|
|
|
group.list.forEach((component) => {
|
2022-12-06 15:28:56 +01:00
|
|
|
describe(`Component ${component.name}:`, () => {
|
2022-12-15 21:12:03 +01:00
|
|
|
component.examples.forEach((example) => {
|
2022-12-06 15:28:56 +01:00
|
|
|
it(`should render example: ${example.name}`, () => {
|
2022-12-15 21:12:03 +01:00
|
|
|
renderNodeOrBrowser(
|
|
|
|
example.render.component,
|
|
|
|
example.render.props,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2022-01-04 21:06:17 +01:00
|
|
|
});
|