Skip to content

Commit

Permalink
planned out initial test statements
Browse files Browse the repository at this point in the history
  • Loading branch information
lizkaufman committed Oct 19, 2020
1 parent 1180b8f commit 636d0a7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 92 deletions.
16 changes: 13 additions & 3 deletions main.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,21 @@ afterEach(() => {
});

describe(LEVELS.one, () => {
it('should have some property...', () => {});
it.todo(
'should contain the correct CSS variables and values at the root level of the CSS'
); //can put the variable names and values in arrays and do the ollll' .forEach so I don't have to write an individual test for each!
it.todo('should use the CSS variables in the correct places in the CSS'); //again, can just .forEach over some arrays to cut down on repetition
});
describe(LEVELS.two, () => {
it('should have some property...', () => {});
it.todo(
'should have the value of main-text-size be 18px (without changing any of the places in the rest of the CSS)'
);
});
describe(LEVELS.three, () => {
it('should have some property...', () => {});
it.todo(
'should have a .dark-mode-theme class where the color variables are correctly changed to the dark mode theme colors'
);
it.todo(
'should have function hooked up to #dark-mode-button button that toggles the .dark-mode-theme class on and off'
);
});
89 changes: 0 additions & 89 deletions styles copy.css

This file was deleted.

0 comments on commit 636d0a7

Please sign in to comment.