├── .github ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ ├── report-file-size.yml │ └── verify.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── package.json ├── src ├── index.ts └── wait-until.ts ├── tests └── wait-for-test.js ├── tsconfig.json └── yarn.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/report-file-size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/.github/workflows/report-file-size.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Build Output 2 | dist/ 3 | 4 | # Dependencies 5 | node_modules/ 6 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Build Output 2 | dist/ 3 | 4 | # Dependencies 5 | node_modules/ 6 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/wait-until.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/src/wait-until.ts -------------------------------------------------------------------------------- /tests/wait-for-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/tests/wait-for-test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/qunit-wait-for/HEAD/yarn.lock --------------------------------------------------------------------------------