mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
describe('Give it some context', function () {
|
|
describe('maybe a bit more context here', function () {
|
|
it('should run here few assertions', function () {
|
|
|
|
});
|
|
});
|
|
});
|
|
})();
|