Update test text
This commit is contained in:
parent
786e5cc027
commit
1aa822da56
2 changed files with 4 additions and 4 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue