There was an error while loading. Please reload this page.
1 parent f279465 commit a013274Copy full SHA for a013274
1 file changed
test/jasmine/tests/config_test.js
@@ -535,16 +535,6 @@ describe('config argument', function() {
535
536
afterEach(destroyGraphDiv);
537
538
- it('should default to an empty string', function(done) {
539
- Plotly.newPlot(gd, [], {})
540
- .then(function() {
541
- expect(gd._context.plotlyServerURL).not.toBe('https://plot.ly');
542
- expect(gd._context.plotlyServerURL).not.toBe('https://chart-studio.plotly.com');
543
- expect(gd._context.plotlyServerURL).toBe('');
544
- })
545
- .then(done, done.fail);
546
- });
547
-
548
it('should open confirmation dialog when set to a correctly-formatted URL', function(done) {
549
Plotly.newPlot(gd, [], {}, {
550
plotlyServerURL: 'https://example.plotly.com/endpoint'
0 commit comments