mirror of
https://github.com/rastapasta/mapscii.git
synced 2025-07-11 03:25:00 +02:00
Don't use async within describe
This commit is contained in:
@ -2,10 +2,10 @@
|
||||
const TileSource = require('./TileSource');
|
||||
|
||||
describe('TileSource', () => {
|
||||
describe('with a HTTP source', async () => {
|
||||
describe('with a HTTP source', () => {
|
||||
test('sets the mode to 3', async () => {
|
||||
const tileSource = new TileSource();
|
||||
await tileSource.init('http://mapscii.me/');
|
||||
test('sets the mode to 3', () => {
|
||||
tileSource.mode = 3;
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user