-
Notifications
You must be signed in to change notification settings - Fork 47.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skeleton outline for a selection events fixture set
- Loading branch information
Brandon Dail
committed
Jan 22, 2018
1 parent
fccd11b
commit c638867
Showing
4 changed files
with
63 additions
and
41 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
27 changes: 27 additions & 0 deletions
27
fixtures/dom/src/components/fixtures/selection-events/index.js
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,27 @@ | ||
import React, {Component} from 'react'; | ||
import FixtureSet from '../../FixtureSet'; | ||
import TestCase from '../../TestCase'; | ||
|
||
export class SelectionEventFixtureRoot extends Component { | ||
render() { | ||
return ( | ||
<FixtureSet title="Selection Events - iframes" description=""> | ||
<TestCase | ||
title="Selection events across iframes" | ||
description="Selection events should work within iframes"> | ||
<TestCase.Steps> | ||
<li>TODO</li> | ||
</TestCase.Steps> | ||
<TestCase.ExpectedResult>TODO</TestCase.ExpectedResult> | ||
<iframe src="/selection-events-iframe" /> | ||
</TestCase> | ||
</FixtureSet> | ||
); | ||
} | ||
} | ||
|
||
export class SelectionEventFixtureIFrame extends Component { | ||
render() { | ||
return <div>I'm in an iframe. TODO</div>; | ||
} | ||
} |