Skip to content

Commit

Permalink
test: use Selenium and ChromeDriver
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed Aug 28, 2023
1 parent c6a132f commit 086ff90
Show file tree
Hide file tree
Showing 8 changed files with 279 additions and 43 deletions.
10 changes: 8 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ updates:
- package-ecosystem: "npm"
directory: "."
schedule:
interval: "daily"
interval: "weekly"
day: "saturday"
- package-ecosystem: "github-actions"
directory: ".github/"
schedule:
interval: "daily"
interval: "weekly"
day: "saturday"
groups:
batch:
patterns:
- "*"
8 changes: 4 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ module.exports = function (grunt) {
grunt.initConfig({
nwjs: {
options: {
mode: "run",
version: "0.78.1",
flavor: "normal",
mode: "get",
version: "0.79.1",
flavor: "sdk",
glob: false,
},
src: "fixture/app",
src: "test/app",
},
});

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ Instead of using `options.srcDir`, we will use `nwjs.src` to parse NW.js project
grunt.initConfig({
nwjs: {
options: {
mode: "run",
- srcDir: "fixture/app",
version: "0.78.1",
mode: "get",
- srcDir: "test/app",
version: "0.79.1",
flavor: "normal",
glob: false,
},
+ src: "fixture/app",
+ src: "test/app",
},
});
```
Expand Down
Loading

0 comments on commit 086ff90

Please sign in to comment.