@@ -846,14 +846,14 @@ describe('schema details', () => {
846
846
} ) ;
847
847
} ) ;
848
848
849
- test ( 'get scheama for table with hash key only' , ( ) => {
849
+ test ( 'get schema for table with hash key only' , ( ) => {
850
850
expect ( table . schema ( ) ) . toEqual ( {
851
851
partitionKey : TABLE_PARTITION_KEY ,
852
852
sortKey : undefined ,
853
853
} ) ;
854
854
} ) ;
855
855
856
- test ( 'get scheama for table with hash key + range key' , ( ) => {
856
+ test ( 'get schema for table with hash key + range key' , ( ) => {
857
857
table = new Table ( stack , 'TableB' , {
858
858
tableName : TABLE_NAME ,
859
859
partitionKey : TABLE_PARTITION_KEY ,
@@ -866,7 +866,7 @@ describe('schema details', () => {
866
866
} ) ;
867
867
} ) ;
868
868
869
- test ( 'get scheama for GSI with hash key' , ( ) => {
869
+ test ( 'get schema for GSI with hash key' , ( ) => {
870
870
table . addGlobalSecondaryIndex ( {
871
871
indexName : GSI_NAME ,
872
872
partitionKey : GSI_PARTITION_KEY ,
@@ -878,7 +878,7 @@ describe('schema details', () => {
878
878
} ) ;
879
879
} ) ;
880
880
881
- test ( 'get scheama for GSI with hash key + range key' , ( ) => {
881
+ test ( 'get schema for GSI with hash key + range key' , ( ) => {
882
882
table . addGlobalSecondaryIndex ( {
883
883
indexName : GSI_NAME ,
884
884
partitionKey : GSI_PARTITION_KEY ,
@@ -891,7 +891,7 @@ describe('schema details', () => {
891
891
} ) ;
892
892
} ) ;
893
893
894
- test ( 'get scheama for LSI' , ( ) => {
894
+ test ( 'get schema for LSI' , ( ) => {
895
895
table . addLocalSecondaryIndex ( {
896
896
indexName : LSI_NAME ,
897
897
sortKey : LSI_SORT_KEY ,
@@ -903,7 +903,7 @@ describe('schema details', () => {
903
903
} ) ;
904
904
} ) ;
905
905
906
- test ( 'get scheama for multiple secondary indexes' , ( ) => {
906
+ test ( 'get schema for multiple secondary indexes' , ( ) => {
907
907
table . addLocalSecondaryIndex ( {
908
908
indexName : LSI_NAME ,
909
909
sortKey : LSI_SORT_KEY ,
@@ -926,7 +926,7 @@ describe('schema details', () => {
926
926
} ) ;
927
927
} ) ;
928
928
929
- test ( 'get scheama for unknown secondary index' , ( ) => {
929
+ test ( 'get schema for unknown secondary index' , ( ) => {
930
930
expect ( ( ) => table . schema ( GSI_NAME ) )
931
931
. toThrow ( / C a n n o t f i n d s c h e m a f o r i n d e x : M y G S I . U s e ' a d d G l o b a l S e c o n d a r y I n d e x ' o r ' a d d L o c a l S e c o n d a r y I n d e x ' t o a d d i n d e x / ) ;
932
932
} ) ;
@@ -1324,7 +1324,7 @@ test('when adding a global secondary index without specifying read and write cap
1324
1324
) ;
1325
1325
} ) ;
1326
1326
1327
- test . each ( [ true , false ] ) ( 'when adding a global secondary index with contributoreIngishtsEnabled %s' , ( contributorInsightsEnabled : boolean ) => {
1327
+ test . each ( [ true , false ] ) ( 'when adding a global secondary index with contributorInsightsEnabled %s' , ( contributorInsightsEnabled : boolean ) => {
1328
1328
const stack = new Stack ( ) ;
1329
1329
const table = new Table ( stack , CONSTRUCT_NAME , {
1330
1330
partitionKey : TABLE_PARTITION_KEY ,
0 commit comments