Details
-
Type:
Bug
-
Status: Closed
-
Priority:
High
-
Resolution: Fixed
-
Affects Version/s: Release 3.2.0
-
Fix Version/s: 2014 Sprint 03, Release 3.2.3, Release 3.3.0
-
Component/s: Debugging
-
Labels:
-
Environment:
SDK 3.2.0.GA
iOS Simulator / iOS 7.0.3
Titanium Studio build 3.2.0.201312191547
XCode 5.0.2
OSX Mavericks 10.9.1
-
Story Points:5
-
Sprint:2014 Sprint 03
Description
Problem
Steps:
1) Create a new project with the test case below
2) Set a breakpoint in Titanium Studio on line 2 of /Resources/ios/test.js
3) Launch the project in debug on iOS simulator
Actual result:
The popup appears and the execution does not stop at breakpoint.
Expected result:
The execution should stop at breakpoint.
Test Case
Resources/ios/test.js |
module.exports = function () {
|
alert("iOS");
|
};
|
Resources/app.js |
var test = require("test");
|
test();
|