Merge branch 'main' into mk-bundling-no-npmrc

This commit is contained in:
matt korwel
2025-10-22 12:19:52 -07:00
committed by GitHub
34 changed files with 568 additions and 120 deletions
@@ -20,7 +20,16 @@ describe('Interactive file system', () => {
it('should perform a read-then-write sequence', async () => {
const fileName = 'version.txt';
await rig.setup('interactive-read-then-write');
await rig.setup('interactive-read-then-write', {
settings: {
security: {
auth: {
selectedType: 'gemini-api-key',
},
disableYoloMode: false,
},
},
});
rig.createFile(fileName, '1.0.0');
const run = await rig.runInteractive();