chore: use fork Traceur with disabled getters/setters
It also includes better debugging class method names for WTF.
This commit is contained in:
parent
14e91e209e
commit
0f8f4801bd
|
@ -10,7 +10,7 @@
|
|||
"dependencies": {
|
||||
"es6-module-loader": "^0.9.2",
|
||||
"systemjs": "^0.9.1",
|
||||
"traceur": "0.0.79",
|
||||
"traceur": "vojtajina/traceur-compiler#disable-getters-setters",
|
||||
"which": "~1",
|
||||
"zone.js": "0.3.0"
|
||||
},
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import {describe, it, expect, IS_DARTIUM} from 'test_lib/test_lib';
|
||||
import {describe, xdescribe, it, expect, IS_DARTIUM} from 'test_lib/test_lib';
|
||||
|
||||
class A {}
|
||||
class B {}
|
||||
|
@ -70,7 +70,7 @@ export function main() {
|
|||
f.typedVariables();
|
||||
});
|
||||
|
||||
describe('class fields', function() {
|
||||
xdescribe('class fields', function() {
|
||||
it('should fail when setting wrong type value', function() {
|
||||
var wf = new WithFields();
|
||||
|
||||
|
@ -87,7 +87,7 @@ export function main() {
|
|||
});
|
||||
});
|
||||
|
||||
describe('static class fields', function() {
|
||||
xdescribe('static class fields', function() {
|
||||
it('should fail when setting wrong type value', function() {
|
||||
expect(function() {
|
||||
WithFields.id = true;
|
||||
|
|
Loading…
Reference in New Issue