From d9a99fb9f570564da9a2ded5a6623483c6f30ea7 Mon Sep 17 00:00:00 2001 From: johnjbarton Date: Mon, 14 Jul 2014 07:15:19 -0700 Subject: [PATCH] Add test System instanceof Loader --- test/test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test.js b/test/test.js index c55e701..284083f 100644 --- a/test/test.js +++ b/test/test.js @@ -558,4 +558,8 @@ function runTests() { assert(m.n, 'n'); }); }); + + test('System instanceof Loader', function(assert) { + assert(System instanceof Reflect.Loader, true); + }); }