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

    -
    -