Remove username column (#5052)

This commit is contained in:
Tom Moor
2023-03-17 11:23:32 -04:00
committed by GitHub
parent 497ab4b89f
commit e69935be99
10 changed files with 14 additions and 44 deletions

View File

@@ -6,7 +6,6 @@ it("presents a user", async () => {
User.build({
id: "123",
name: "Test User",
username: "testuser",
})
);
expect(user).toMatchSnapshot();
@@ -17,7 +16,6 @@ it("presents a user without slack data", async () => {
User.build({
id: "123",
name: "Test User",
username: "testuser",
})
);
expect(user).toMatchSnapshot();