CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PrismarineJS

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: PrismarineJS/mineflayer
Path: blob/master/test/externalTests/displayName.js
Views: 789
1
const assert = require('assert')
2
3
module.exports = () => async (bot) => {
4
const player = bot.players[bot.username]
5
assert.strictEqual(player.displayName.toString(), bot.username)
6
}
7
8