-
Notifications
You must be signed in to change notification settings - Fork 26
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
Migrate to Playwright #466
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
license-eye has checked 115 files.
Valid | Invalid | Ignored | Fixed |
---|---|---|---|
80 | 16 | 19 | 0 |
Click to see the invalid file list
- build/UserALEWebExtension/background.d.ts
- build/UserALEWebExtension/background.js
- build/UserALEWebExtension/content.d.ts
- build/UserALEWebExtension/globals.d.ts
- build/UserALEWebExtension/messageTypes.d.ts
- build/UserALEWebExtension/options.d.ts
- build/attachHandlers.d.ts
- build/configure.d.ts
- build/getInitialSettings.d.ts
- build/main.d.ts
- build/packageLogs.d.ts
- build/sendLogs.d.ts
- build/utils/auth/index.d.ts
- build/utils/headers/index.d.ts
- build/utils/index.d.ts
- test/e2e/package.config.ts
Use this command to fix any missing license headers
```bash
docker run -it --rm -v $(pwd):/github/workspace apache/skywalking-eyes header fix
</details>
const config = res.useraleConfig; | ||
browser.storage.local.get([configKey], (res) => { | ||
const payload = res[configKey]; | ||
console.log(payload); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Leftovers?
src/types.d.ts
Outdated
@@ -154,7 +154,7 @@ export declare namespace Callbacks { | |||
export declare namespace Extension { | |||
export type PluginConfig = { urlWhitelist: string }; | |||
export type ConfigPayload = { | |||
useraleConfig: Settings.Config; | |||
useraleConfig: Settings.Config<Partial>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this supposed to be a partial over Settings.Config.... I've never seen this syntax. If so, shouldn't it be:
Partial<Settings.Config>
??
@@ -17,7 +17,7 @@ | |||
<!doctype html> | |||
<html> | |||
<head> | |||
<script src="../build/userale-2.4.0.min.js"></script> | |||
<script src="../../../build/userale-2.4.0.min.js"></script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We ought to remove version numbering from our build artifacts, otherwise every time we bump a version, all these tests break/go stale...
No description provided.