- Foldable left panel (user profile) and right panel (task details) - Clicking a task in the list or graph node selects it and shows details - Both views (task list + graph) always mounted via absolute inset-0 for correct canvas dimensions; tabs toggle visibility with opacity - Graph node selection animation: other nodes repel outward (charge -600), then selected node smoothly slides to center (500ms cubic ease-out), then charge restores to -120 and graph stabilizes - Graph re-fits on tab switch and panel resize via ResizeObserver - Fix UUID string IDs throughout (backend returns UUIDs, not integers) - Add TaskDetailPanel, UserPanel components - Add CLAUDE.md project documentation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
"use strict";
|
|
/* eslint-disable no-empty-function */
|
|
|
|
var assert = require("@sinonjs/referee").assert;
|
|
var className = require("./class-name");
|
|
|
|
describe("className", function () {
|
|
it("returns the class name of an instance", function () {
|
|
// Because eslint-config-sinon disables es6, we can't
|
|
// use a class definition here
|
|
// https://github.com/sinonjs/eslint-config-sinon/blob/master/index.js
|
|
// var instance = new (class TestClass {})();
|
|
var instance = new (function TestClass() {})();
|
|
var name = className(instance);
|
|
assert.equals(name, "TestClass");
|
|
});
|
|
|
|
it("returns 'Object' for {}", function () {
|
|
var name = className({});
|
|
assert.equals(name, "Object");
|
|
});
|
|
|
|
it("returns null for an object that has no prototype", function () {
|
|
var obj = Object.create(null);
|
|
var name = className(obj);
|
|
assert.equals(name, null);
|
|
});
|
|
|
|
it("returns null for an object whose prototype was mangled", function () {
|
|
// This is what Node v6 and v7 do for objects returned by querystring.parse()
|
|
function MangledObject() {}
|
|
MangledObject.prototype = Object.create(null);
|
|
var obj = new MangledObject();
|
|
var name = className(obj);
|
|
assert.equals(name, null);
|
|
});
|
|
});
|