Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/jupytergis_core/src/jgisplugin/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const activate = (
});

app.commands.addCommand(CommandIDs.createNew, {
label: args => 'New JGIS File',
label: args => 'GIS File',
caption: 'Create a new JGIS Editor',
icon: args => logoIcon,
execute: async args => {
Expand Down
5 changes: 1 addition & 4 deletions ui-tests/tests/new-file.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ test.describe('#newFile', () => {
});

test('New file should open with no errors', async ({ page }) => {
await page
.getByLabel('notebook content')
.getByText('New JGIS File')
.click();
await page.getByLabel('notebook content').getByText('GIS File').click();

const tab = page.getByLabel('notebook content');
const sources = page.getByText('Sources', { exact: true });
Expand Down
Loading