From a2a2e6c523b9900c738db79583240787d0054801 Mon Sep 17 00:00:00 2001 From: Sergey Simonchik Date: Thu, 3 Dec 2015 19:45:49 +0300 Subject: [PATCH] propagate "file" property across suites and tests for "exports" interface --- lib/interfaces/exports.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/interfaces/exports.js b/lib/interfaces/exports.js index a64692ae5c..8fc45405ae 100644 --- a/lib/interfaces/exports.js +++ b/lib/interfaces/exports.js @@ -53,7 +53,7 @@ module.exports = function(suite) { } else { suite = Suite.create(suites[0], key); suites.unshift(suite); - visit(obj[key]); + visit(obj[key], file); suites.shift(); } }