-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37dd5db
commit 53cbb39
Showing
9 changed files
with
93 additions
and
18 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
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
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
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
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
Empty file.
Empty file.
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,44 @@ | ||
// @flow | ||
|
||
describe('start', () => { | ||
it('should call the onDragStart hook when a initial publish occurs', () => { | ||
|
||
}); | ||
|
||
it('should throw an exception if an initial publish is called before a drag ends', () => { | ||
|
||
}); | ||
}); | ||
|
||
describe('drop', () => { | ||
it('should call the onDragEnd hook when a DROP_COMPLETE action occurs', () => { | ||
|
||
}); | ||
|
||
it('should throw an exception if there was no drag start published', () => { | ||
|
||
}); | ||
}); | ||
|
||
describe('cancel', () => { | ||
it('should publish an on drag end with no destination', () => { | ||
|
||
}); | ||
|
||
// the start location can change after a dynamic update | ||
it('should use the current critical descriptor as the start location', () => { | ||
|
||
}); | ||
|
||
it('should not do anything if a drag start had not been published', () => { | ||
|
||
}); | ||
}); | ||
|
||
describe('update', () => { | ||
|
||
}); | ||
|
||
describe('announcements', () => { | ||
|
||
}); |
Empty file.