You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
describe('some test suite',{tags: ['some tag','another tag']},()=>{describe('some feature',()=>{it('test 1',()=>{expect(true).to.equal(true);});it('test 2',()=>{expect(true).to.equal(false);console.log('this is a console log');});});});
Scroll down so the top describes are off the top of the editor
Expect sticky scroll to work; it does not:
Remove the object literal from the top describe, so the first line looks like:
describe('some test suite',()=>{
Sticky scroll starts working as expected:
My colleague just clued me into the editor.stickyScroll.defaultModel setting: switching from outlineModel to either foldingProviderModel or indentModel makes the stick scroll work in this case.
The text was updated successfully, but these errors were encountered:
Does this issue occur when all extensions are disabled?: Yes
Commit: 21a129e
Date: 2024-12-13T12:38:52.505Z (4 hrs ago)
Electron: 32.2.6
ElectronBuildId: 10629634
Chromium: 128.0.6613.186
Node.js: 20.18.1
V8: 12.8.374.38-electron.0
OS: Darwin x64 23.6.0
Steps to Reproduce:
describe
s are off the top of the editordescribe
, so the first line looks like:My colleague just clued me into the
editor.stickyScroll.defaultModel
setting: switching fromoutlineModel
to eitherfoldingProviderModel
orindentModel
makes the stick scroll work in this case.The text was updated successfully, but these errors were encountered: