Skip to content
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@

- Fix failing functional/smoke tests
- Update to node v24
- `@braintree/uuid` to 1.0.1
- Update dev dependencies
- async to 3.2.6
- browserify to 17.0.1
- chromedriver to 143.0.3
- del to 8.0.1
- gulp to 5.0.1
- @wdio/cli to 9.21.1
- @wdio/local-runner to 9.21.0
- @wdio/mocha-framework to 9.21.0
- @wdio/spec-reporter to 9.20.0
- chromedriver to 143.0.1
- add eslint-plugin-prettier
- removed @wdio/sync
- updated tests to be asynchronous

Expand All @@ -20,7 +27,6 @@
## 6.0.2

- Update (sub-)dependencies

- axios to 1.7.7
- body-parse to 1.20.3
- cookie to 0.7.1
Expand Down
8 changes: 5 additions & 3 deletions bin/www
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env node

'use strict';
"use strict";

var server = require('../spec/functional/server');
server.start(function () { console.log('') }, true);
var server = require("../spec/functional/server");
server.start(function () {
console.log("");
}, true);
Loading