-
Notifications
You must be signed in to change notification settings - Fork 961
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
Add support for emulator import/export in VSCode #8053
base: master
Are you sure you want to change the base?
Conversation
…se-tools into jh-persistence-prototype
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #8053 +/- ##
==========================================
- Coverage 51.14% 51.11% -0.03%
==========================================
Files 423 423
Lines 29581 29604 +23
Branches 6043 6049 +6
==========================================
+ Hits 15128 15133 +5
- Misses 13094 13112 +18
Partials 1359 1359 ☔ View full report in Codecov by Sentry. |
@hlshen I added some basic tests here but I;m having trouble getting the existing tests to pass locally for me. When you're back, could you sanity check me on how these were implemented and help me get them up to standard? |
@@ -21,6 +22,24 @@ export class EmulatorsController implements Disposable { | |||
this.setEmulatorsStarting(); | |||
}), | |||
); | |||
|
|||
this.subscriptions.push( |
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.
nit: these are very simple so it's ok; but prefer named function OR comments describing these; Otherwise sifting through subscriptions gets difficult
Description
Adds support for emulator import and export in VSCode.
TODO:
Scenarios Tested
I tested out all the basic CUJs here - export button triggers an export, clear data clears the data, and each of the settings work.