mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-30 15:18:50 +01:00
* ci(backend-review.yml): add linter step to the backend review workflow * chore(backend-review.yml): remove prettier from lint-action configuration * chore: apply new linting workflow * chore(lint-staged.config.js): reorder lint-staged tasks for JavaScript and TypeScript files * chore(eslint): update ignorePatterns in .eslintrc.js chore(lint-action): remove prettier option in backend-review.yml chore(package.json): add lint and lint:fix scripts * chore(lint-staged.config.js): remove prettier --write command for js, jsx, ts, tsx files * chore(titleConvo.js): remove unnecessary console.log statement chore(titleConvo.js): add missing comma in options object * chore: apply linting to all files * chore(lint-staged.config.js): update lint-staged configuration to include prettier formatting
49 lines
1.8 KiB
JavaScript
49 lines
1.8 KiB
JavaScript
import { expect, test } from '@playwright/test';
|
|
|
|
test.describe('Settings suite', () => {
|
|
test('Last Bing settings', async ({ page }) => {
|
|
await page.goto('http://localhost:3080/');
|
|
const newTopicButton = await page.getByRole('button', { name: 'New Topic' });
|
|
await newTopicButton.click();
|
|
|
|
// includes the icon + endpoint names in obj property
|
|
const endpointItem = await page.getByRole('menuitemradio', { name: 'BingAI Bing' })
|
|
await endpointItem.click();
|
|
|
|
await page.getByTestId('text-input').click();
|
|
const button1 = await page.getByRole('button', { name: 'Mode: BingAI' });
|
|
const button2 = await page.getByRole('button', { name: 'Mode: Sydney' });
|
|
|
|
try {
|
|
await button1.click({ timeout: 100 });
|
|
} catch (e) {
|
|
// console.log('Bing button', e);
|
|
}
|
|
|
|
try {
|
|
await button2.click({ timeout: 100 });
|
|
} catch (e) {
|
|
// console.log('Sydney button', e);
|
|
}
|
|
await page.getByRole('option', { name: 'Sydney' }).click();
|
|
await page.getByRole('tab', { name: 'Balanced' }).click();
|
|
|
|
// Change Endpoint to see if settings will persist
|
|
await newTopicButton.click();
|
|
await page.getByRole('menuitemradio', { name: 'ChatGPT OpenAI' }).click();
|
|
|
|
// Close endpoint menu & re-select BingAI
|
|
await page.getByTestId('text-input').click();
|
|
await newTopicButton.click();
|
|
await endpointItem.click();
|
|
|
|
// Check if the settings persisted
|
|
const localStorage = await page.evaluate(() => window.localStorage);
|
|
const lastBingSettings = JSON.parse(localStorage.lastBingSettings);
|
|
const { jailbreak, toneStyle } = lastBingSettings;
|
|
expect(jailbreak).toBeTruthy();
|
|
expect(toneStyle).toEqual('balanced');
|
|
const button = await page.getByRole('button', { name: 'Mode: Sydney' });
|
|
expect((button).count()).toBeTruthy();
|
|
});
|
|
});
|