Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oamaok committed Feb 26, 2024
1 parent ace52e7 commit 594513c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/components/modules/Sequencer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class SequencerNode extends Component<
<div class={styles.group}>
{group.map((note) => (
<button
class={[
class={() => [
styles.indicator,
{
[styles.on]: note.index === this.state.editing,
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/modules.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ test('can connect two modules starting from input', async ({ page }) => {
await expect(cable).toHaveCount(1)
})

test.skip('can connect/disconnect any module output to/from any module input/parameter', async ({
test('can connect/disconnect any module output to/from any module input/parameter', async ({
page,
}) => {
test.setTimeout(1000 * 60 * 10)
Expand Down Expand Up @@ -137,7 +137,7 @@ test.skip('can connect/disconnect any module output to/from any module input/par
const outputName = modules[fromModuleName].outputs[outputIndex]
const inputName = modules[toModuleName].inputs[inputIndex]

test.step(`Connecting ${fromModuleName}:${outputName} to input ${toModuleName}:${inputName}`, async () => {
await test.step(`Connecting ${fromModuleName}:${outputName} to input ${toModuleName}:${inputName}`, async () => {
const fromSocket = await getModuleSocket(
fromModule,
'output',
Expand Down Expand Up @@ -197,7 +197,7 @@ test.skip('can connect/disconnect any module output to/from any module input/par
const outputName = modules[fromModuleName].outputs[outputIndex]
const paramName = modules[toModuleName].parameters[paramIndex]

test.step(`Connecting ${fromModuleName}:${outputName} to param ${toModuleName}:${paramName}`, async () => {
await test.step(`Connecting ${fromModuleName}:${outputName} to param ${toModuleName}:${paramName}`, async () => {
const fromSocket = await getModuleSocket(
fromModule,
'output',
Expand Down

0 comments on commit 594513c

Please sign in to comment.