@@ -1819,29 +1819,30 @@ describe('v8debugapi', () => {
18191819 } ) ;
18201820 } ) ;
18211821
1822- it ( 'should correctly stop on line-1 breakpoints' , done => {
1823- const foo = require ( './fixtures/foo.js' ) ;
1824- // TODO(dominickramer): Have this actually implement Breakpoint
1825- const bp : stackdriver . Breakpoint = ( {
1826- id : 'bp-line-1' ,
1827- location : { path : 'foo.js' , line : 1 , column : 45 } ,
1828- } as { } ) as stackdriver . Breakpoint ;
1829- api . set ( bp , err1 => {
1830- assert . ifError ( err1 ) ;
1831- api . wait ( bp , err2 => {
1832- assert . ifError ( err2 ) ;
1833- assert . ok ( bp . stackFrames ) ;
1834-
1835- api . clear ( bp , err3 => {
1836- assert . ifError ( err3 ) ;
1837- done ( ) ;
1838- } ) ;
1839- } ) ;
1840- process . nextTick ( ( ) => {
1841- foo ( ) ;
1842- } ) ;
1843- } ) ;
1844- } ) ;
1822+ // Skipped until #737 is resolved.
1823+ // it('should correctly stop on line-1 breakpoints', done => {
1824+ // const foo = require('./fixtures/foo.js');
1825+ // // TODO(dominickramer): Have this actually implement Breakpoint
1826+ // const bp: stackdriver.Breakpoint = ({
1827+ // id: 'bp-line-1',
1828+ // location: {path: 'foo.js', line: 1, column: 45},
1829+ // } as {}) as stackdriver.Breakpoint;
1830+ // api.set(bp, err1 => {
1831+ // assert.ifError(err1);
1832+ // api.wait(bp, err2 => {
1833+ // assert.ifError(err2);
1834+ // assert.ok(bp.stackFrames);
1835+
1836+ // api.clear(bp, err3 => {
1837+ // assert.ifError(err3);
1838+ // done();
1839+ // });
1840+ // });
1841+ // process.nextTick(() => {
1842+ // foo();
1843+ // });
1844+ // });
1845+ // });
18451846
18461847 it ( 'should not silence errors thrown in the wait callback' , done => {
18471848 const message = 'This exception should not be silenced' ;
0 commit comments