Sign In Register

How can we help you today?

Start a new topic

If Cloud Code has a getter, Test Harness cannot perform next step

If there is a getter definition on the next line in the debug code, the debug button is disabled and only can click stop. (setter can run fine)


 The getter code like that:

var obj = {
    get test() {
        return 1;
    }
};

 

Login to post a comment