Skip to content

Commit

Permalink
fix remaining old arena.config -> app.config
Browse files Browse the repository at this point in the history
  • Loading branch information
endel committed Aug 21, 2023
1 parent 9a64c1d commit 61aeda8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions templates/esm/test/MyRoom_test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import assert from "assert";
import { boot } from "@colyseus/testing";

// import your "arena.config.ts" file here.
import appConfig from "../src/arena.config.js";
// import your "app.config.ts" file here.
import appConfig from "../src/app.config.js";

describe("testing your Colyseus app", () => {
let colyseus;
Expand Down
4 changes: 2 additions & 2 deletions templates/javascript/test/MyRoom_test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const assert = require('assert');
const boot = require('@colyseus/testing').boot;

// import your "arena.config.ts" file here.
const appConfig = require('../src/arena.config');
// import your "app.config.ts" file here.
const appConfig = require('../src/app.config');

describe("testing your Colyseus app", () => {
let colyseus;
Expand Down
2 changes: 1 addition & 1 deletion templates/typescript/test/MyRoom_test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import assert from "assert";
import { ColyseusTestServer, boot } from "@colyseus/testing";

// import your "arena.config.ts" file here.
// import your "app.config.ts" file here.
import appConfig from "../src/app.config";
import { MyRoomState } from "../src/rooms/schema/MyRoomState";

Expand Down

0 comments on commit 61aeda8

Please sign in to comment.