From b43b395d19b539f0b0b0157157d9e0baee8cfa6f Mon Sep 17 00:00:00 2001 From: James Ford Date: Tue, 1 Oct 2013 12:12:45 +0100 Subject: [PATCH] docs(migration): module.export/module.exports Change code snippet to use module.exports rather than module.export, because that's what the runner expects, and previous sample code doesn't work from copy-paste. --- docs/about/03-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/about/03-migration.md b/docs/about/03-migration.md index a60552acf..3b7690be9 100644 --- a/docs/about/03-migration.md +++ b/docs/about/03-migration.md @@ -77,7 +77,7 @@ files = [ ]; // change to -module.export = function(config) { +module.exports = function(config) { config.set({ frameworks: ['jasmine'], files: ['*.js']