From 9dd3c7fea0336f4178aacdef8ad2bb852a1d2a9c Mon Sep 17 00:00:00 2001 From: James Homer Date: Sat, 9 Sep 2017 12:39:20 +0100 Subject: [PATCH] add layoutTransition to with-config test --- test/fixtures/with-config/assets/app.css | 7 +++++++ test/fixtures/with-config/nuxt.config.js | 1 + 2 files changed, 8 insertions(+) diff --git a/test/fixtures/with-config/assets/app.css b/test/fixtures/with-config/assets/app.css index f69fcd8bbc..02152c1c08 100755 --- a/test/fixtures/with-config/assets/app.css +++ b/test/fixtures/with-config/assets/app.css @@ -1,3 +1,10 @@ .global-css-selector { color: red; } + +.test-enter-active, .test-leave-active { + transition: opacity .5s +} +.test-enter, .test-leave-active { + opacity: 0 +} diff --git a/test/fixtures/with-config/nuxt.config.js b/test/fixtures/with-config/nuxt.config.js index 9344c4d144..2b60043d1c 100644 --- a/test/fixtures/with-config/nuxt.config.js +++ b/test/fixtures/with-config/nuxt.config.js @@ -15,6 +15,7 @@ module.exports = { } }, transition: 'test', + layoutTransition: 'test', offline: true, plugins: [ '~/plugins/test.js',