From 5677049b57c711a7500c1f06fa6993353d023d3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Ka=C5=88ka?= <124378142+LukasKanka@users.noreply.github.com> Date: Fri, 5 Jan 2024 23:52:15 +0100 Subject: [PATCH] =?UTF-8?q?nov=C3=A9=20=C4=8Dl=C3=A1nky?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- articles/cypress-nastaveni-typescript.html | 121 ++++++++++++++++++ automatizovana-testovani.html | 136 +++++++++++---------- index.html | 128 +++++++++---------- 3 files changed, 255 insertions(+), 130 deletions(-) create mode 100644 articles/cypress-nastaveni-typescript.html diff --git a/articles/cypress-nastaveni-typescript.html b/articles/cypress-nastaveni-typescript.html new file mode 100644 index 0000000..81dbeae --- /dev/null +++ b/articles/cypress-nastaveni-typescript.html @@ -0,0 +1,121 @@ + + + + + + + + + + + Testing Docs - Cypress nastavení psaní kódu v + Typescript + + + +

Testing Docs CZ

+

Dokumentace pro všechny testery

+
+ +
+ +
+ + +
+

Cypress nastavení psaní kódu v + Typescript

+

Pokud chceme test psát v TypeScript je třeba vytvořit soubor:

+

tsconfig.json

+

Do tohoto souboru vložíme následující kód:

+
+

{

+

"compilerOptions": {

+

"target": "es5",

+

"lib": ["es5", "dom"],

+

"types": ["cypress", "node"],

+

"baseUrl": "./"

+

},

+

"include": [

+

"**/*.ts"

+

]

+

}

+
+
+ +
+ + + + + +
+ Nejdůležitější články: +
+
  • + Co je automatizované testování +
  • +
  • + Otázky a odpovědí k Playwright +
  • +
    +
    +
    + + + diff --git a/automatizovana-testovani.html b/automatizovana-testovani.html index b3b59ed..7bfd978 100644 --- a/automatizovana-testovani.html +++ b/automatizovana-testovani.html @@ -2,84 +2,88 @@ - - - + + + - + Testing Docs - Automatizované testování -

    Testing Docs CZ

    -

    Dokumentace pro všechny testery

    -
    -