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

feat: export the adb utilities to be used in third party nodejs scripts #2116

Merged
merged 35 commits into from
Jan 27, 2021
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
525fd59
initial attempt to export adb utils
ankushduacodes Jan 11, 2021
b94db98
revert accidental changes to imports
ankushduacodes Jan 11, 2021
d11cf88
revert accidental changes to imports
ankushduacodes Jan 11, 2021
712d5c6
add deviceId param
ankushduacodes Jan 11, 2021
914847f
add deviceId param
ankushduacodes Jan 11, 2021
744f97d
added lazy loading to adb function imports
ankushduacodes Jan 14, 2021
72f31a3
added type annotation to getter
ankushduacodes Jan 14, 2021
2d8e5a9
added tests to test out new adb util export
ankushduacodes Jan 14, 2021
d3f799e
refactored test-import and test-require to reduce code duplication
ankushduacodes Jan 15, 2021
1f061a1
fixed paths for newly refactored import tests
ankushduacodes Jan 15, 2021
e612848
fixed test-require imports
ankushduacodes Jan 15, 2021
ea76ae3
trying to fix webext-as-library imports
ankushduacodes Jan 15, 2021
3354d88
trying to fix webext-as-library exports
ankushduacodes Jan 15, 2021
20a52cd
trying to fix webext-as-library exports
ankushduacodes Jan 15, 2021
90cf955
trying to fix webext-as-library exports
ankushduacodes Jan 15, 2021
a00f2ae
trying to fix webext-as-library exports
ankushduacodes Jan 15, 2021
5e4760b
trying to fix webext-as-library exports
ankushduacodes Jan 15, 2021
2c3f3da
trying to fix webext-as-library exports
ankushduacodes Jan 15, 2021
8c659db
trying to fix webext-as-library exports
ankushduacodes Jan 15, 2021
116d49f
more trying to fix webext-as-library exports
ankushduacodes Jan 15, 2021
2ea9470
addressing minor changes
ankushduacodes Jan 19, 2021
610e85e
testing
ankushduacodes Jan 19, 2021
40c626f
testing windows inports/exports
ankushduacodes Jan 20, 2021
56bb049
trying to distingush between win32 path and posix path
ankushduacodes Jan 21, 2021
cc3f3e9
removing log statemet
ankushduacodes Jan 21, 2021
49f1e71
testing new exposed adb functions
ankushduacodes Jan 21, 2021
bad409f
added some documentation for new ADB functions and on how to run an e…
ankushduacodes Jan 21, 2021
5ebea01
updated adbPathString to use path lib
ankushduacodes Jan 21, 2021
9616682
docs update
ankushduacodes Jan 21, 2021
c74a4e2
Addressing minor nits
ankushduacodes Jan 22, 2021
24c4483
Update README.md
ankushduacodes Jan 22, 2021
22edc26
Update README.md
ankushduacodes Jan 22, 2021
4794f81
wording change
ankushduacodes Jan 26, 2021
3c3bd4a
more wording change
ankushduacodes Jan 26, 2021
315c0f7
addressing final few nits and polish requests
ankushduacodes Jan 27, 2021
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
Prev Previous commit
Next Next commit
fixed test-require imports
  • Loading branch information
ankushduacodes committed Jan 15, 2021
commit e612848839deab087e71675b3fa4f8af4f88a35e
4 changes: 2 additions & 2 deletions tests/fixtures/webext-as-library/test-require.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {testWebExtModuleImports} from './helpers';

const webExt = require('web-ext');

const testWebExtModuleImports = require('./helpers.js');

testWebExtModuleImports(webExt);