test: adding stub test files for FeaturesTable, AppList, and AppCard
This commit is contained in:
17
src/pages-and-resources/discussions/AppCard.test.jsx
Normal file
17
src/pages-and-resources/discussions/AppCard.test.jsx
Normal file
@@ -0,0 +1,17 @@
|
||||
describe('AppCard', () => {
|
||||
test('checkbox input is checked when AppCard is selected', () => {
|
||||
|
||||
});
|
||||
|
||||
test('title, subtitle, and text from app are displayed', () => {
|
||||
|
||||
});
|
||||
|
||||
test('full support message shown when hasFullSupport is true', () => {
|
||||
|
||||
});
|
||||
|
||||
test('partial support message shown when hasFullSupport is false', () => {
|
||||
|
||||
});
|
||||
});
|
||||
@@ -1,5 +1,21 @@
|
||||
describe('AppList', () => {
|
||||
it('will pass because it is an example', () => {
|
||||
test('displays a message when there are no apps available', () => {
|
||||
|
||||
});
|
||||
|
||||
test('display a card for each available app', () => {
|
||||
|
||||
});
|
||||
|
||||
test('displays the FeaturesTable at desktop sizes', () => {
|
||||
|
||||
});
|
||||
|
||||
test('hides the FeaturesTable at mobile sizes', () => {
|
||||
|
||||
});
|
||||
|
||||
test('onSelectApp is called when an app is clicked', () => {
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
13
src/pages-and-resources/discussions/FeaturesTable.test.jsx
Normal file
13
src/pages-and-resources/discussions/FeaturesTable.test.jsx
Normal file
@@ -0,0 +1,13 @@
|
||||
describe('FeaturesTable', () => {
|
||||
test('displays a row for each available feature', () => {
|
||||
|
||||
});
|
||||
|
||||
test('apps columns receive a check for each feature they support', () => {
|
||||
|
||||
});
|
||||
|
||||
test('apps columns receive a dash for each unsupported feature', () => {
|
||||
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user