test: adding stub test files for FeaturesTable, AppList, and AppCard

This commit is contained in:
David Joy
2021-04-06 10:18:09 -04:00
parent 30ab5a07a1
commit 85cd626f4e
3 changed files with 47 additions and 1 deletions

View 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', () => {
});
});

View File

@@ -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', () => {
});
});

View 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', () => {
});
});