Skip to content

Commit

Permalink
fix: enable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianrothe committed Jun 10, 2024
1 parent f9a947d commit 8356e0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/svelte-5/src/module.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import { test } from '@jest/globals'

import * as Subject from './module.svelte.js'

test.skip('get current count', () => {
test('get current count', () => {
const subject = Subject.createCounter()
const result = subject.count

expect(result).toBe(0)
})

test.skip('increment', () => {
test('increment', () => {
const subject = Subject.createCounter()

subject.increment()
Expand Down

0 comments on commit 8356e0f

Please sign in to comment.