Change decoratorsBeforeExport default to false (#8113)

This commit is contained in:
Nicolò Ribaudo
2018-06-04 21:12:01 +02:00
committed by GitHub
parent b445b79734
commit 6349118bed
6 changed files with 10 additions and 16 deletions

View File

@@ -47,8 +47,8 @@ describe("'decoratorsBeforeExport' option", function() {
const AFTER = "export @dec class Foo {}";
// These are skipped
run(BEFORE, undefined, false);
run(AFTER, undefined, true);
run(BEFORE, undefined, true);
run(AFTER, undefined, false);
run(BEFORE, true, false);
run(AFTER, true, true);
run(BEFORE, false, true);