Skip to content

Commit 36b79aa

Browse files
Enabled experimental decorators for test cases
1 parent 5f4e501 commit 36b79aa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gruntfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ module.exports = function(grunt)
8888
mode: 'Modules',
8989
target: 'ES5',
9090
module: 'CommonJS',
91-
noLib: true
91+
noLib: true,
92+
experimentalDecorators: true
9293
});
9394

9495
FS.readdirSync(Path.join(base)).forEach(function(directory) {

test/converter.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ describe('Converter', function() {
6666
logger: 'none',
6767
target: 'ES5',
6868
module: 'CommonJS',
69-
noLib: true
69+
noLib: true,
70+
experimentalDecorators: true
7071
});
7172
});
7273

0 commit comments

Comments
 (0)