Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ecklf/7ec69fd685b5b9d63871ec60400464ba to your computer and use it in GitHub Desktop.
Save ecklf/7ec69fd685b5b9d63871ec60400464ba to your computer and use it in GitHub Desktop.
const bucket = admin.storage().bucket(testEnv.storageBucket);
const file = bucket.file(mockObject.name);
const contents = JSON.stringify(mockObject, null, 2);
file.save(contents, function(err) {
if (!err) {
// file written
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment