UNPKG

@knapsack-pro/core

Version:

Knapsack Pro Core library splits tests across CI nodes and makes sure that tests will run in optimal time on each CI node. This library gives core features like communication with KnapsackPro.com API. This library is a dependency for other projects specif

30 lines (29 loc) 964 B
export class CIProviderBase { static get ciNodeTotal() { throw new Error('nodeTotal getter is not implemented!'); } static get ciNodeIndex() { throw new Error('nodeIndex getter is not implemented!'); } static get ciNodeBuildId() { throw new Error('nodeBuildId getter is not implemented!'); } static get ciNodeRetryCount() { throw new Error('ciNodeRetryCount getter is not implemented!'); } static get commitHash() { throw new Error('commitHash getter is not implemented!'); } static get branch() { throw new Error('branch getter is not implemented!'); } static get userSeat() { throw new Error('userSeat getter is not implemented!'); } static get fixedQueueSplit() { throw new Error('fixedQueueSplit getter is not implemented!'); } static get ciProvider() { throw new Error('ciProvider getter is not implemented!'); } }