]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
style: format
authorEduardo San Martin Morote <posva13@gmail.com>
Mon, 14 Jun 2021 13:18:46 +0000 (15:18 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Mon, 14 Jun 2021 13:18:46 +0000 (15:18 +0200)
__tests__/guards/beforeRouteEnter.spec.ts

index 7a5397da7702a5a52ba41f933316a1bae595e865..82e05418c05dc83bc0e1bcca0fe5fd478b721fa4 100644 (file)
@@ -5,8 +5,10 @@ import { RouteRecordRaw, NavigationGuard } from '../../src/types'
 const Home = { template: `<div>Home</div>` }
 const Foo = { template: `<div>Foo</div>` }
 
-const beforeRouteEnter =
-  jest.fn<ReturnType<NavigationGuard>, Parameters<NavigationGuard>>()
+const beforeRouteEnter = jest.fn<
+  ReturnType<NavigationGuard>,
+  Parameters<NavigationGuard>
+>()
 const named = {
   default: jest.fn(),
   other: jest.fn(),