You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
368 B
18 lines
368 B
// Executes once before the first describe.
|
|
before(function() {
|
|
logLevel = log.getLevel();
|
|
|
|
// Set minimum log level
|
|
log.setLevel(log.levels.SILENT);
|
|
});
|
|
|
|
// Executes once after all the describes.
|
|
after(function() {
|
|
log.setLevel(logLevel);
|
|
});
|
|
|
|
// Executed before every test.
|
|
beforeEach(function() {});
|
|
|
|
// Executed after every test.
|
|
afterEach(function() {});
|