chore: mark v0.0.64 (#1371)

This commit is contained in:
Pavel Feldman
2026-02-05 17:11:02 -08:00
committed by GitHub
parent de6776f318
commit e39e83bb13
12 changed files with 67 additions and 55 deletions

View File

@@ -60,13 +60,13 @@ async function runCli(...args: string[]): Promise<CliResult> {
}
test('open data URL', async ({}) => {
expect(await runCli('open', 'data:text/html,hello')).toEqual(expect.objectContaining({
expect(await runCli('open', 'data:text/html,hello', '--persistent')).toEqual(expect.objectContaining({
output: expect.stringContaining('hello'),
exitCode: 0,
}));
expect(await runCli('session-delete')).toEqual(expect.objectContaining({
output: expect.stringContaining('Deleted user data for session'),
expect(await runCli('delete-data')).toEqual(expect.objectContaining({
output: expect.stringContaining('Deleted user data for'),
exitCode: 0,
}));
});