Delete Account: started adding unit tests

This commit is contained in:
gianantoniopini
2021-05-11 15:19:05 +02:00
parent b0bd8c94f3
commit eb54a7f69d
5 changed files with 131 additions and 1 deletions
@@ -0,0 +1,19 @@
/* eslint-disable no-underscore-dangle */
import { v4 as uuidv4 } from 'uuid';
class HttpsCallableResult {
constructor(data) {
this._uuid = uuidv4();
this._data = data;
}
get data() {
return this._data;
}
get uuid() {
return this._uuid;
}
}
export default HttpsCallableResult;