mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 14:01:34 +03:00
ebf4cd5c1f
- Remove unnecessary modules - Remove `ts-plugin-namespace-auto-import` as it was a workaround to use the non-conventional `import *` convention - Remove `esbuild-plugin-copy-directories` as it is unuse - Inline modules that are only ever used once - Inline `project-manager-shim` into `gui2` - it is only used during `gui2`'s dev mode - Inline `content-config` into `client` - Flatten `app/ide-desktop/lib/` to `app/ide-desktop/` - Flatten `app/ide-desktop/lib/dashboard/` to `app/dashboard/` # Important Notes - As mentioned above, all remaining modules have been moved up from `app/ide-desktop/lib/` to `app/ide-desktop/`. It's not ideal but I'd rather hold off on moving them anywhere else before we have a consensus on what should go where. - (That is to say, this may not be the final directory structure - but I figure it's fine to get *something* done so that hopefully the rest of the restructuring is simpler.)
70 lines
2.9 KiB
TypeScript
70 lines
2.9 KiB
TypeScript
/** @file Test dragging of labels. */
|
|
import * as test from '@playwright/test'
|
|
|
|
import * as backend from '#/services/Backend'
|
|
|
|
import * as actions from './actions'
|
|
|
|
test.test('drag labels onto single row', async ({ page }) => {
|
|
const label = 'aaaa'
|
|
await actions.mockAllAndLogin({
|
|
page,
|
|
setupAPI: api => {
|
|
api.addLabel(label, backend.COLORS[0])
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
api.addLabel('bbbb', backend.COLORS[1]!)
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
api.addLabel('cccc', backend.COLORS[2]!)
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
api.addLabel('dddd', backend.COLORS[3]!)
|
|
api.addDirectory('foo')
|
|
api.addSecret('bar')
|
|
api.addFile('baz')
|
|
api.addSecret('quux')
|
|
},
|
|
})
|
|
const assetRows = actions.locateAssetRows(page)
|
|
const labelEl = actions.locateLabelsPanelLabels(page, label)
|
|
await actions.relog({ page })
|
|
|
|
await test.expect(labelEl).toBeVisible()
|
|
await labelEl.dragTo(assetRows.nth(1))
|
|
await test.expect(actions.locateAssetLabels(assetRows.nth(0)).getByText(label)).not.toBeVisible()
|
|
await test.expect(actions.locateAssetLabels(assetRows.nth(1)).getByText(label)).toBeVisible()
|
|
await test.expect(actions.locateAssetLabels(assetRows.nth(2)).getByText(label)).not.toBeVisible()
|
|
await test.expect(actions.locateAssetLabels(assetRows.nth(3)).getByText(label)).not.toBeVisible()
|
|
})
|
|
|
|
test.test('drag labels onto multiple rows', async ({ page }) => {
|
|
const label = 'aaaa'
|
|
await actions.mockAllAndLogin({
|
|
page,
|
|
setupAPI: api => {
|
|
api.addLabel(label, backend.COLORS[0])
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
api.addLabel('bbbb', backend.COLORS[1]!)
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
api.addLabel('cccc', backend.COLORS[2]!)
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
api.addLabel('dddd', backend.COLORS[3]!)
|
|
api.addDirectory('foo')
|
|
api.addSecret('bar')
|
|
api.addFile('baz')
|
|
api.addSecret('quux')
|
|
},
|
|
})
|
|
const assetRows = actions.locateAssetRows(page)
|
|
const labelEl = actions.locateLabelsPanelLabels(page, label)
|
|
|
|
await page.keyboard.down(await actions.modModifier(page))
|
|
await actions.clickAssetRow(assetRows.nth(0))
|
|
await actions.clickAssetRow(assetRows.nth(2))
|
|
await test.expect(labelEl).toBeVisible()
|
|
await labelEl.dragTo(assetRows.nth(2))
|
|
await page.keyboard.up(await actions.modModifier(page))
|
|
await test.expect(actions.locateAssetLabels(assetRows.nth(0)).getByText(label)).toBeVisible()
|
|
await test.expect(actions.locateAssetLabels(assetRows.nth(1)).getByText(label)).not.toBeVisible()
|
|
await test.expect(actions.locateAssetLabels(assetRows.nth(2)).getByText(label)).toBeVisible()
|
|
await test.expect(actions.locateAssetLabels(assetRows.nth(3)).getByText(label)).not.toBeVisible()
|
|
})
|