-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[Storage] Support for Development Connection String - storage-blob #5235
[Storage] Support for Development Connection String - storage-blob #5235
Conversation
/azp run js - storage-blob - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
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.
Looks good.
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.
Will the new added tests be coverred by live test? Or anyone won't run these tests anymore?
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.
Will the new added tests be coverred by live test? Or anyone won't run these tests anymore?
Answered here - #5004 (comment) |
This PR adds the support for Development connection string and some tests for the emulator(local).
DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;
UseDevelopmentStorage=true
orUseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://myProxyUri
Added a separate set of Emulator tests(test suite in the node tests) which will be skipped if the
STORAGE_CONNECTION_STRING
environment variable doesn't start withUseDevelopmentStorage=true
.