mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-24 16:40:10 +02:00
12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
describe('regression test for bug #4102', function(){
|
|
it('Object.create', function(){
|
|
Object.create.should.be.a('function');
|
|
|
|
var t = {
|
|
name: 'test123'
|
|
};
|
|
|
|
t.should.have.property('name').and.equal('test123');
|
|
});
|
|
});
|