From bdca7630a465591539dbcb9690da629d3c8ae787 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sun, 30 Jul 2017 16:26:27 +0430 Subject: [PATCH] update module tests --- test/fixtures/module/modules/tapable/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/module/modules/tapable/index.js b/test/fixtures/module/modules/tapable/index.js index 48fc69466f..fa5bd572ef 100644 --- a/test/fixtures/module/modules/tapable/index.js +++ b/test/fixtures/module/modules/tapable/index.js @@ -2,7 +2,7 @@ module.exports = function () { let ctr = 1 // Add hook for module - this.nuxt.plugin('module', moduleContainer => { + this.plugin('ready', moduleContainer => { this.nuxt.__module_hook = moduleContainer && ctr++ })