├── .github └── workflows │ └── spellcheck.yml ├── .gitignore ├── .spell-dict ├── .spellcheck.yml ├── LICENSE └── README.md /.github/workflows/spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andriisoldatenko/awesome-performance-testing/HEAD/.github/workflows/spellcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | dictionary.dic 3 | -------------------------------------------------------------------------------- /.spell-dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andriisoldatenko/awesome-performance-testing/HEAD/.spell-dict -------------------------------------------------------------------------------- /.spellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andriisoldatenko/awesome-performance-testing/HEAD/.spellcheck.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andriisoldatenko/awesome-performance-testing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andriisoldatenko/awesome-performance-testing/HEAD/README.md --------------------------------------------------------------------------------