Skip to content

Commit

Permalink
Remove duplicate base64encode test from app.test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dougburks authored Feb 12, 2024
1 parent 8f77774 commit e618b7d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions html/js/app.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@ test('replaceActionVar', () => {
expect(app.replaceActionVar('test {foo} here', 'foo', undefined, true)).toBe('test {foo} here');
});

test('base64encode', () => {
expect(app.base64encode('')).toBe('');
expect(app.base64encode('hello')).toBe('aGVsbG8=');
});

test('formatMarkdown', () => {
expect(app.formatMarkdown('```code```')).toBe('<p><code>code</code></p>\n');
expect(app.formatMarkdown('<scripts src="https://somebad.place"></script>bad')).toBe('<p>bad</p>\n');
Expand Down

0 comments on commit e618b7d

Please sign in to comment.