File tree Expand file tree Collapse file tree 4 files changed +605
-597
lines changed Expand file tree Collapse file tree 4 files changed +605
-597
lines changed Original file line number Diff line number Diff line change @@ -45,13 +45,20 @@ jobs:
45
45
# Whatever version of Firefox comes with 22.04 is causing Firefox
46
46
# startup to hang when launched by karma. Need to look further into
47
47
# why.
48
+
48
49
runs-on : ubuntu-20.04
49
50
51
+ # Chrome webdriver version is pinned to avoid install failures like "No such object: chromedriver/LATEST_RELEASE_115.0.5790"
52
+ # These are installed even in the Firefox test due to `yarn` command which pulls the devDependency listed in package.json.
50
53
steps :
51
54
- name : install Firefox stable
52
55
run : |
53
56
sudo apt-get update
54
57
sudo apt-get install firefox
58
+ sudo apt-get install wget
59
+ sudo wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_110.0.5481.177-1_amd64.deb
60
+ sudo apt-get install -f ./google-chrome-stable_110.0.5481.177-1_amd64.deb --allow-downgrades
61
+
55
62
- name : Checkout Repo
56
63
uses : actions/checkout@master
57
64
with :
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ export {
82
82
} from './api/bundle' ;
83
83
84
84
export { FirestoreSettings , PersistenceSettings } from './api/settings' ;
85
+ export type { PrivateSettings } from './lite-api/settings' ;
85
86
export { ExperimentalLongPollingOptions } from './api/long_polling_options' ;
86
87
87
88
export {
Original file line number Diff line number Diff line change @@ -68,7 +68,10 @@ export interface FirestoreSettings {
68
68
ignoreUndefinedProperties ?: boolean ;
69
69
}
70
70
71
- /** Undocumented, private additional settings not exposed in our public API. */
71
+ /**
72
+ * @internal
73
+ * Undocumented, private additional settings not exposed in our public API.
74
+ */
72
75
export interface PrivateSettings extends FirestoreSettings {
73
76
// Can be a google-auth-library or gapi client.
74
77
credentials ?: CredentialsSettings ;
You can’t perform that action at this time.
0 commit comments