mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
https://github.com/openstreetmap/iD/issues/6087#issuecomment-476219308 Also added `npm run phantom` to test workarounds like this quickly
8 lines
218 B
JavaScript
8 lines
218 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]);
|
|
});
|
|
});
|