-
Notifications
You must be signed in to change notification settings - Fork 256
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
Showing
466 changed files
with
8,826 additions
and
10,669 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,5 @@ | ||
codecov: | ||
coverage: | ||
precision: 1 | ||
round: up | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
<html> | ||
<title>Error</title> | ||
<body> | ||
<p>Something went wrong</p> | ||
</body> | ||
</html> | ||
{ | ||
"test": "Broken" | ||
} |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,7 @@ | ||
import React from 'react'; | ||
|
||
const AddComponentA = () => ( | ||
<div data-testid="add-plugin-component-a">Plugin A</div> | ||
); | ||
|
||
export default AddComponentA; |
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,7 @@ | ||
import React from 'react'; | ||
|
||
const AddComponentB = () => ( | ||
<div data-testid="add-plugin-component-b">Plugin B</div> | ||
); | ||
|
||
export default AddComponentB; |
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,9 @@ | ||
import React from 'react'; | ||
|
||
const AddComponentC = (props) => ( | ||
<div id="add-plugin-component-c"> | ||
Plugin C | ||
</div> | ||
); | ||
|
||
export default AddComponentC; |
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,7 @@ | ||
const AddComponentD = (props) => ( | ||
<div id="add-plugin-component-d"> | ||
<input defaultValue="hello componentD"/> | ||
</div> | ||
); | ||
|
||
export default AddComponentD; |
8 changes: 8 additions & 0 deletions
8
__tests__/integration/mirador/components/CompanionWindowButtonComponent.jsx
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,8 @@ | ||
import React from 'react'; | ||
|
||
const CompanionWindowButtonComponent = () => ( | ||
<span data-testid="add-plugin-companion-window-button" role="button">Companion Window Button Component</span> | ||
); | ||
CompanionWindowButtonComponent.value = 'specialMiradorKey'; | ||
|
||
export default CompanionWindowButtonComponent; |
9 changes: 9 additions & 0 deletions
9
__tests__/integration/mirador/components/CompanionWindowComponent.jsx
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,9 @@ | ||
import React from 'react'; | ||
|
||
const CompanionWindowComponent = (props) => ( | ||
<div data-testid="add-plugin-companion-window"> | ||
Companion Window Component | ||
</div> | ||
); | ||
|
||
export default CompanionWindowComponent; |
7 changes: 7 additions & 0 deletions
7
__tests__/integration/mirador/components/StateDependentComponent.jsx
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,7 @@ | ||
const StateDependentComponent = (props) => ( | ||
<button id="plugin-button" onClick={props.incSomeNumber} style={{ width: 64 }}> | ||
{ "Plugin:" + props.manifestId } | ||
</button> | ||
); | ||
|
||
export default StateDependentComponent; |
Oops, something went wrong.