Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: cleanup unused code #494

Merged
merged 15 commits into from
Apr 8, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
.
  • Loading branch information
naorpeled committed Apr 8, 2023
commit 49023ec7e7443c45a2ae09395d1e58f87bb5c0af
5 changes: 2 additions & 3 deletions src/__tests__/projectionBuilder.unit.test.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import projectionBuilder from '../lib/projectionBuilder'

// Require Table and Entity classes
import Table from '../classes/Table'
import Entity from '../classes/Entity'

// Create basic table
const DefaultTable = new Table({
name: 'test-table',
partitionKey: 'pk',
sortKey: 'sk'
})

// Create basic entity
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const User = new Entity({
name: 'User',
attributes: {
Expand All @@ -26,6 +24,7 @@ const User = new Entity({
table: DefaultTable
} as const)

// eslint-disable-next-line @typescript-eslint/no-unused-vars
const Pet = new Entity({
name: 'Pet',
attributes: {
Expand Down