Skip to content

Commit b188eac

Browse files
Merge branch 'main' into feature/no-explicit-auth-scopes
2 parents 0e0bddc + fe79ae9 commit b188eac

9 files changed

Lines changed: 1009 additions & 1508 deletions

__tests__/functional/e2e.functional.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, it, beforeAll } from 'vitest';
2-
import { ClassifierSdk, ImageFormat, parseAudience } from '../../src';
2+
import { ClassifierSdk, ImageFormat, parseAudience } from '../../src/index.js';
33
import fs from 'fs';
44
import path from 'path';
55

__tests__/functional/main.functional.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
type ClassifyImageInput,
66
ImageFormat,
77
parseAudience,
8-
} from '../../src';
8+
} from '../../src/index.js';
99
import fs from 'fs';
1010
import { randomUUID } from 'crypto';
1111

__tests__/unit/authenticationManager.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, it, expect, beforeEach, vi } from 'vitest';
22
import {
33
AuthenticationManager,
44
type AuthenticationOptions,
5-
} from '../../src/authenticationManager';
5+
} from '../../src/authenticationManager.js';
66
import * as openidClient from 'openid-client';
77
import * as jwtDecodeModule from 'jwt-decode';
88
import * as grpc from '@grpc/grpc-js';

__tests__/unit/hashing.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, it,} from 'vitest';
2-
import { computeHashesFromStream, HashType, ImageFormat, RequestEncoding } from '../../src';
2+
import { computeHashesFromStream, HashType, ImageFormat, RequestEncoding } from '../../src/index.js';
33
import fs from 'fs';
44

55
describe('hashing', () => {

__tests__/unit/main.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, it, expect, vi, beforeEach } from 'vitest';
2-
import { ClassifierSdk, ImageFormat } from '../../src';
2+
import { ClassifierSdk, ImageFormat } from '../../src/index.js';
33

44
// Mock the dependencies
55
vi.mock('@grpc/grpc-js', () => ({

0 commit comments

Comments
 (0)