mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-21 19:26:41 +02:00
b9f41bb48c
(closes #7072)
11 lines
335 B
JavaScript
11 lines
335 B
JavaScript
describe('test some capabilities of PhantomJS', function () {
|
|
it('Array.from(Set)', function () {
|
|
var s = new Set([1,1]);
|
|
var result = Array.from(s);
|
|
expect(result).to.eql([1]);
|
|
});
|
|
it('has ArrayBuffer.isView', function () {
|
|
expect(typeof ArrayBuffer.isView).to.eql('function');
|
|
});
|
|
});
|