chore: prettier markdown files
This commit is contained in:
+1
-1
@@ -43,7 +43,7 @@ export function mockGetBoundingClientRect(
|
||||
|
||||
Element.prototype.getBoundingClientRect = <any>jest.fn(() => rect);
|
||||
|
||||
return function() {
|
||||
return function () {
|
||||
Element.prototype.getBoundingClientRect = originMethod;
|
||||
};
|
||||
}
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ Vue.component('transition', TransitionStub as any);
|
||||
|
||||
// promisify setTimeout
|
||||
export function later(delay: number = 0): Promise<void> {
|
||||
return new Promise(resolve => {
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(resolve, delay);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user