Update title in the README

pull/59/head
Christian Paul 2018-11-19 01:07:26 -08:00
rodzic 4546a99a55
commit 8a4d82dead
1 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,12 @@
'use strict';
const TileSource = require('./TileSource');
describe('TileSource', () => {
describe('with a HTTP source', async () => {
const tileSource = new TileSource();
await tileSource.init('http://mapscii.me/');
test('sets the mode to 3', () => {
tileSource.mode = 3;
});
});
});