-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add missing motion tests * fix --------- Co-authored-by: Rich Harris <[email protected]>
- Loading branch information
1 parent
ccc7266
commit a53b443
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { describe, it, assert } from 'vitest'; | ||
import { get } from 'svelte/store'; | ||
import { spring, tweened } from 'svelte/motion'; | ||
|
||
describe('motion', () => { | ||
describe('spring', () => { | ||
it('handles initially undefined values', () => { | ||
const size = spring(); | ||
|
||
size.set(100); | ||
assert.equal(get(size), 100); | ||
}); | ||
}); | ||
|
||
describe('tweened', () => { | ||
it('handles initially undefined values', () => { | ||
const size = tweened(); | ||
|
||
size.set(100); | ||
assert.equal(get(size), 100); | ||
}); | ||
|
||
it('sets immediately when duration is 0', () => { | ||
const size = tweened(0); | ||
|
||
size.set(100, { duration: 0 }); | ||
assert.equal(get(size), 100); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters