2021-08-13 23:04:05 +02:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
2022-06-06 17:05:26 +02:00
|
|
|
(C) 2022 Taler Systems S.A.
|
2021-08-13 23:04:05 +02: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/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2021-11-15 15:18:58 +01:00
|
|
|
*
|
|
|
|
* @author Sebastian Javier Marchano (sebasjm)
|
|
|
|
*/
|
2021-08-13 23:04:05 +02:00
|
|
|
|
2023-01-10 00:20:09 +01:00
|
|
|
import { tests } from "@gnu-taler/web-util/lib/index.browser";
|
2022-03-29 04:41:07 +02:00
|
|
|
import { View as TestedComponent } from "./Welcome.js";
|
2021-08-13 23:04:05 +02:00
|
|
|
|
|
|
|
export default {
|
2022-12-06 15:28:56 +01:00
|
|
|
title: "welcome",
|
2021-08-13 23:04:05 +02:00
|
|
|
component: TestedComponent,
|
|
|
|
};
|
|
|
|
|
2023-01-10 00:20:09 +01:00
|
|
|
export const Normal = tests.createExample(TestedComponent, {
|
2022-04-27 19:33:52 +02:00
|
|
|
permissionToggle: { value: true, button: {} },
|
2021-08-13 23:04:05 +02:00
|
|
|
diagnostics: {
|
|
|
|
errors: [],
|
2021-11-15 15:18:58 +01:00
|
|
|
walletManifestVersion: "1.0",
|
|
|
|
walletManifestDisplayVersion: "1.0",
|
2021-08-13 23:04:05 +02:00
|
|
|
firefoxIdbProblem: false,
|
|
|
|
dbOutdated: false,
|
2021-11-15 15:18:58 +01:00
|
|
|
},
|
2021-08-13 23:04:05 +02:00
|
|
|
});
|
|
|
|
|
2023-01-10 00:20:09 +01:00
|
|
|
export const TimedoutDiagnostics = tests.createExample(TestedComponent, {
|
2021-08-13 23:04:05 +02:00
|
|
|
timedOut: true,
|
2022-04-27 19:33:52 +02:00
|
|
|
permissionToggle: { value: true, button: {} },
|
2021-08-13 23:04:05 +02:00
|
|
|
});
|
|
|
|
|
2023-01-10 00:20:09 +01:00
|
|
|
export const RunningDiagnostics = tests.createExample(TestedComponent, {
|
2022-04-27 19:33:52 +02:00
|
|
|
permissionToggle: { value: true, button: {} },
|
2021-08-13 23:04:05 +02:00
|
|
|
});
|