Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 0.1.0 #2

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

## 0.1.0 (2023-10-13)


### Features

* QUnit completed ([704a63d](https://github.com/mauriciolauffer/wdio-qunit-service/commit/704a63d834fb301f18c436caa702a860608d127a))
* wdio qunit service ([d31b4d7](https://github.com/mauriciolauffer/wdio-qunit-service/commit/d31b4d7ef9f4765833a41a876cbb25901bbd20f7))


### Bug Fixes

* Version ([#1](https://github.com/mauriciolauffer/wdio-qunit-service/issues/1)) ([b793c55](https://github.com/mauriciolauffer/wdio-qunit-service/commit/b793c55ca99057a5674e4cf12c72b956e9904b5a))
8 changes: 8 additions & 0 deletions examples/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"types": [
"node",
"@wdio/globals/types",
"@wdio/devtools-service",
"wdio-qunit-service"
],
},
"include": [".", "../src"]
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wdio-qunit-service",
"version": "0.0.1",
"version": "0.1.0",
"description": "WebdriverIO service for running QUnit browser-based tests and dinamically converting them to wdio test suites.",
"author": "Mauricio Lauffer",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const log = logger('wdio-qunit-service');
*/
async function qunitHooks(browserInstance: WebdriverIO.Browser): Promise<WdioQunitService.RunEndDetails> {
log.debug('Waiting for QUnit to load...');
await browser.waitUntil(() => browser.execute(() => !!window?.QUnit), {
await browserInstance.waitUntil(() => browserInstance.execute(() => !!window?.QUnit), {
timeout: 60000,
timeoutMsg: 'QUnit took too long to load.',
interval: 100
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"@wdio/types",
"@wdio/globals/types",
"@wdio/mocha-framework",
"@wdio/devtools-service",
"qunit"
],
},
Expand Down