mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
d78cfebd43
* Jestify app/scripts/lib/*.test.js * Mocha config on mocha test script * Add app/scripts/lib to include subdirs
37 lines
1008 B
JavaScript
37 lines
1008 B
JavaScript
import cleanErrorStack from './cleanErrorStack';
|
|
|
|
describe('Clean Error Stack', () => {
|
|
const testMessage = 'Test Message';
|
|
const testError = new Error(testMessage);
|
|
const undefinedErrorName = new Error(testMessage);
|
|
const blankErrorName = new Error(testMessage);
|
|
const blankMsgError = new Error();
|
|
|
|
beforeEach(() => {
|
|
undefinedErrorName.name = undefined;
|
|
blankErrorName.name = '';
|
|
});
|
|
|
|
it('tests error with message', () => {
|
|
expect(cleanErrorStack(testError).toString()).toStrictEqual(
|
|
'Error: Test Message',
|
|
);
|
|
});
|
|
|
|
it('tests error with undefined name', () => {
|
|
expect(cleanErrorStack(undefinedErrorName).toString()).toStrictEqual(
|
|
'Error: Test Message',
|
|
);
|
|
});
|
|
|
|
it('tests error with blank name', () => {
|
|
expect(cleanErrorStack(blankErrorName).toString()).toStrictEqual(
|
|
'Test Message',
|
|
);
|
|
});
|
|
|
|
it('tests error with blank message', () => {
|
|
expect(cleanErrorStack(blankMsgError).toString()).toStrictEqual('Error');
|
|
});
|
|
});
|