Update test text

This commit is contained in:
Jordan Welch 2023-09-19 07:52:23 -05:00
parent 786e5cc027
commit 1aa822da56
No known key found for this signature in database
GPG key ID: 8C1872FF2F7710B3
2 changed files with 4 additions and 4 deletions

View file

@ -1320,7 +1320,7 @@ describe('Diff2Html', () => {
`); `);
}); });
it('should include auto mode on file list', () => { it('should include auto colorScheme on file list', () => {
const result = html(diffExample1, { const result = html(diffExample1, {
drawFileList: true, drawFileList: true,
colorScheme: ColorSchemeType.AUTO, colorScheme: ColorSchemeType.AUTO,
@ -1462,7 +1462,7 @@ describe('Diff2Html', () => {
`); `);
}); });
it('should include dark mode on file list', () => { it('should include dark colorScheme on file list', () => {
const result = html(diffExample1, { const result = html(diffExample1, {
drawFileList: true, drawFileList: true,
colorScheme: ColorSchemeType.DARK, colorScheme: ColorSchemeType.DARK,

View file

@ -178,7 +178,7 @@ describe('FileListRenderer', () => {
}); });
describe('with dark colorScheme', () => { describe('with dark colorScheme', () => {
it('should work for all kinds of files', () => { it('should should include dark colorScheme', () => {
const hoganUtils = new HoganJsUtils({}); const hoganUtils = new HoganJsUtils({});
const fileListRenderer = new FileListRenderer(hoganUtils, { const fileListRenderer = new FileListRenderer(hoganUtils, {
colorScheme: ColorSchemeType.DARK, colorScheme: ColorSchemeType.DARK,
@ -224,7 +224,7 @@ describe('FileListRenderer', () => {
}); });
describe('with auto colorScheme', () => { describe('with auto colorScheme', () => {
it('should work for all kinds of files', () => { it('should should include auto colorScheme', () => {
const hoganUtils = new HoganJsUtils({}); const hoganUtils = new HoganJsUtils({});
const fileListRenderer = new FileListRenderer(hoganUtils, { const fileListRenderer = new FileListRenderer(hoganUtils, {
colorScheme: ColorSchemeType.AUTO, colorScheme: ColorSchemeType.AUTO,